Hi, I need a requirement to execute a javascript code when button with a certain class is clicked. But the button will be in multiple pages and have some actions. So i want a way to write a event listner just like how we apply css in sytling, which will apply to all the parts of application whenever a element uses that class. Is there any way to do that? Any documentation for reference will be helpful. Thanks in advance
↧
Integrate a event listner in mendix in entire application just like custom css
↧
Design mode of Pluggable Widget
Hello everybody! I'm implementing a pluggable widget and am facing issues with the Design mode in Mendix Studio Pro. The widget has two containers for further widgets. It works pretty good and looks like this in the application: The component is called Flyout, so I have created a Flyout.editorPreview.tsx with the following functions: export function preview(props: FlyoutContainerProps): ReactElement {
return (
);
}
export function getPreviewCss(): string {
return require("./ui/Flyout.css");
} However, the styles are not applied in the Mendix Design mode: I noticed the "Preview error" on the top right side, but don't know where to find more information about it (the console doesn't say anything). Has anyone got an idea? Thanks, Holger
↧
↧
How to adjust width of datagrid2 column by drag?
i'd like to adjust the width of the row of datagrid2, but it was not the same way like in datagrid1
↧
How to save date property in Teamcenter through mendix
I am getting a date value, converted it to string value and using setProperties soa, trying to update it in teamcenter. But getting the error like "Unparsable date".
↧
An unknown error occurred while starting the server
from 2 days onwards i am facing this error. Please help me for this. Mendix.Modeler.M2EEConnector.M2EEException: The server encountered an error. at Mendix.Modeler.M2EEConnector.M2EEResponse.CheckSuccess() in Mendix.Modeler.M2EEConnector\M2EEResponse.cs:line 57 at Mendix.Modeler.M2EEConnector.M2EEClient.ExecuteDdlCommands(IFileSystem fileSystem, DdlCommands ddlCommands, String ddlCommandsLogDir) in Mendix.Modeler.M2EEConnector\M2EEClient.cs:line 306 at Mendix.Modeler.M2EEConnector.StartupManager.StartRuntime(IM2EEClient client, StartupInfo info) in Mendix.Modeler.M2EEConnector\StartupManager.cs:line 119 at Mendix.Modeler.M2EEConnector.StartupManager.PerformStartup(StartupInfo info, String deploymentId, IM2EEClient client) in Mendix.Modeler.M2EEConnector\StartupManager.cs:line 61 at Mendix.Modeler.M2EEConnector.RuntimeController.Start(StartupInfo info, String deploymentId, LogLevel autoSubscribeLogLevel) in Mendix.Modeler.M2EEConnector\RuntimeController.cs:line 136 at Mendix.Modeler.Deployment.Local.LocalRunner.<>c__DisplayClass96_0.b__1() in Mendix.Modeler.Deployment\Local\LocalRunner.cs:line 423 at Mendix.Modeler.Utility.BackgroundUtil.<>c__DisplayClass1_0`1.b__0(Object s, DoWorkEventArgs e) in Mendix.Modeler.Utility\BackgroundUtil.cs:line 29 at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
↧
↧
How to convert JSON string to CSV file ?
Hi All, I have a JSON string coming from the rest call which consists of objects as JSON string . Can we directly convert that JSON string to CSV file that can be downloaded? Please any one help me on this
↧
How to update the record of a single filed in grid 1
How to update the record of a single filed in grid 1. There is one filed which is coming from master table so how to save it.
↧
Data vanishing in data grid2
I am using a data grid2 where I am getting the values from a microflow. Currently there are 4 columns in the microflow. Among the 4, for one column value is retrieved from the microflow entity itself. For other 2 columns, values are being retrieved by association. For the next one column, I am retrieving an entity using a separate microflow. In that microflow, a constant is being used to retrieve the data based on XPath. Values are fetched correctly. But in the UI, when I try to click on any button in the page and close it, the data in that particular column is not visible. Again if I move to any other tabs or refreshes the page, the data is visible again. Is there any idea to resolve this data grid issue?
↧
How to link to specific list view object record
I have a data view that listens to a list view on my home page and would like to send an email that includes a link to a specific record/object in the list view. How can I do this using page URL or microflow URL since deeplink module is deprecated? I tried using page URL/microflow URL but I can't seem to figure it out.
↧
↧
How to generate a link for users?
Hello, I am creating an application where I have various quiz. Further various questions and there options are associated with it which are defined and handled by the admin. Now I want that whenever some users want to access a quiz and answer it, the admin can generate a link and share it to the users. The user can then use that link to access only that quiz whose link has been generated by the admin. How do i implement this?
↧
Kafka error handling and offset
I have a microflow that gets triggered bij receiving messages on a Kafka stream, its purpose is to write this information to a secondary system. When the secondary system is not responding the microflow ends in an error event. I would expect this to cause the offset for the Kafka consumer to not increase and to retry the same message after some delay. However, it seems that the error event does not influence the actual outcome. Whenever the Microflow ends (end event ór error event) the offset is increased by one and the next message will be picked up and processed. Is there a way to not have this happen in the case of an error event and 'pause' the consumer until the current message can be processed succesfully?
↧
How to get the list of objects from datagrid2 client-side ( after filters and sorting of the user)
Hello everyone, I have a datagrid2 where the user can filter by text, sort, ... After he has done his actions, he clicks on a nanoflow button. I want this NF to retrieve the same list in the datagrid2 client-side. For now, I get the String version of it with the following Javascript action: /**
* @param {string} datagridName
* @returns {Promise.}
*/
export async function JS_GetWithString(datagridName) {
// BEGIN USER CODE
if (!datagridName) {
throw new Error("Datagrid name is required.");
}
return new Promise((resolve, reject) => {
const stream = window[window.DATAGRID_DATA_EXPORT][datagridName].create();
let dataList = [];
const streamOptions = { limit: 1000 }; // You can adjust the chunk size if needed
stream.process((msg) => {
if (!msg) {
return;
}
switch (msg.type) {
case "data":
// Filter out the last column from each row
const filteredData = msg.payload.map(row => row.slice(0, -1));
dataList = dataList.concat(filteredData);
break;
case "end":
const jsonString = JSON.stringify(dataList);
resolve(jsonString);
break;
case "aborted":
reject(new Error("Data export aborted."));
break;
default:
break;
}
}, streamOptions);
stream.start();
});
// END USER CODE
} Can you help me to make this list returns a list of objects instead of a string please? Thank you so much. NB: I tried many times but I couldn't make it work when the return is * @returns {Promise.}
↧
How to select specific object in list view
How can I open a new tab with a specific object selected using the list view widget?
↧
↧
Why Mendix doesnt support for multi selecting components in workflow?
As i checked Mendix does support for multi selecting activities/components in microflow,pages, domain model but why it doesnt support for multi selecting components in workflow? we can only select one component alongwith its outcomes/paths and whole structure included in one component. We cant multi select and cut or copy those components. Can anybody help me with reason or Mendix missed with this feature?
↧
Credit Mango Loan Customer care Helpline Number 9229909654//"8597069455 Call 24x7 Justhf.
Credit Mango Loan Customer care Helpline Number 9229909654//"8597069455 Call 24x7 Justhf.Credit Mango Loan Customer care Helpline Number 9229909654//"8597069455 Call 24x7 Justhf.
↧
Getting Error while downloading zip file
Hello Everyone, I am getting below error while downloading a zip file. An error occurred while executing an action Step1.staticImage5: Did not expect an argument to be undefined Error: An error occurred while executing an action of PPP.Step1.staticImage5: Did not expect an argument to be undefined at http://localhost:8082/mxclientsystem/mxui/mxui.js?638582187125733524:66:234970 at be (http://localhost:8082/mxclientsystem/mxui/mxui.js?638582187125733524:24:6830) at r (http://localhost:8082/mxclientsystem/mxui/mxui.js?638582187125733524:24:6731) at E (http://localhost:8082/mxclientsystem/mxui/mxui.js?638582187125733524:64:5069) can anyone please help ? Thank you.
↧
Error: Attempt to illegally change a value for object with id '' (). Object hash is invalid!
Hi all, Since moving from Mendix 10.6 to 10.9 users been encountering the following error: Attempt to illegally change a value for object with id '' (). Object hash is invalid! Here are some details about the error. Encountered since: moving from Mendix 10.6 to 10.9. Until this day users are still having this issue. Error frequency: This problem is encountered everyday, multiple times. Application wide problem: Yes, it's not an error that occurs on a specific page or in a specific module, but application wide. It happens both on the local host and in the cloud. Affected users: Anonymous and non-anonymous users. The problem is user specific though, meaning user 1 might have the error, while user 2 doesn't. Affected browsers: Chrome we know for sure, other browsers we don't know. How to reproduce: Unfortunately, it is unclear how to reproduce exactly. It seems to happen if you use the application, and then do not use it for a while, to come back to it later. It seems like it might have to do with the session. Solution: Not known. Temporary fix is to delete the cookies. The problem will arise at a random moment in the future again. Problem After not using the app for an undisclosed time, our error screen will popup for the user showing that something went wrong. After closing the popup and pressing a button/going to another page, the error popup will show again (and a new log message is logged). Only after clearing the browser cookies the problem is temporary fixed. Example error log: 2024-06-04T10:31:19.027171 [APP/PROC/WEB/0] ERROR - Connector: An error has occurred while handling the request. [User 'Anonymous_378ccd7b-b0a6-4bb9-b002-56cef8a47970' with session id '7262e649-XXXX-XXXX-XXXX-XXXXXXXXcae1' and roles 'Anonymous']2024-06-04T10:31:19.027191 [APP/PROC/WEB/0] com.mendix.webui.WebUIException: Attempt to illegally change a value for object with id '5066549622469729' (Inschrijfformulier.Locatie). Object hash is invalid!2024-06-04T10:31:19.027204 [APP/PROC/WEB/0] at com.mendix.webui.requesthandling.HashUtilImpl$.verifyHash(HashUtilImpl.scala:58) Our hunch We checked the changelog of Mendix 10.9 and it says Session and Login Token Improvements. We are afraid that this problem has to do with these improvements. We think the error is related to the cookies/session management, since deleting the cookies temporarily solves the problem. Since the problem occurs with different entities that are being loaded, and not necessarily the top-most entity, we cannot relate it to our own application logic. Also, we've never had this issue before and all of a sudden it started showing up on every page, which makes us think it is not specific to our app logic. What we've done so far We've searched the community for answers, and found this error occurred with other users but without a clear solution. We've contacted Mendix, but Mendix somehow was unable to reproduce the error in our application. After a long back and forth without progress (since Mendix could not reproduce the error and we are unable to give a reliable way of reproducing the error), we've discussed the issue with our Mendix partner. After explaining the error to our partner, they were able to (unreliably) reproduce the error themselves within 10 minutes on our acceptance environment. Our Mendix partner is continuing to look into this. Relevant community questions Q132473: Attempt to illegally change a value for object with id '166351711236054100' (BTIC_Mobile.Language). Object hash is invalid! Q100896: Getting Error - Object hash is invalid! Q128896: Attempt to illegally change a value for object with id ' 123 ' & Frozen Launch screen Q119391: What reason will cause the `roles` of a `User` being empty? Q124790: Hash is invalid , Connector error Q102301: Attempt to illegally change a value for object with id %id%! etc.
↧
↧
Error while saving SP configuration in SAML
Hi Team , i am getting below error while saving SP configuration. SAML Module : 3.2.5Mendix : 9.6.10 java.lang.NoSuchMethodError: org.bouncycastle.asn1.x509.SubjectPublicKeyInfo.getPublicKeyData()Lorg/bouncycastle/asn1/DERBitString;at org.bouncycastle.cert.X509ExtensionUtils.calculateIdentifier(Unknown Source)at org.bouncycastle.cert.X509ExtensionUtils.createSubjectKeyIdentifier(Unknown Source)at org.bouncycastle.cert.jcajce.JcaX509ExtensionUtils.createSubjectKeyIdentifier(Unknown Source)at saml20.implementation.security.SecurityHelper.generateCertificate(SecurityHelper.java:103)at saml20.implementation.security.SecurityHelper.prepareKeystore(SecurityHelper.java:211)at saml20.implementation.security.CredentialRepository.updateConfiguration(CredentialRepository.java:90)at saml20.implementation.SAMLRequestHandler.initServlet(SAMLRequestHandler.java:104)at saml20.actions.ReloadConfiguration.executeAction(ReloadConfiguration.java:30)at saml20.actions.ReloadConfiguration.executeAction(ReloadConfiguration.java:17)at com.mendix.systemwideinterfaces.core.UserAction.execute(UserAction.java:46)at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.doCall(CoreActionHandlerImpl.scala: Please refer below Jar filesanimal-sniffer-annotations-1.17.jar.CommunityCommons.RequiredLib"\bcjmail-jdk15to18-1.70.jar"\bcjmail-jdk15to18-1.70.jar.Email_Connector.RequiredLib"\bcpg-jdk18on-1.75.jar"\bcpg-jdk18on-1.75.jar.Encryption.RequiredLib"\bcpkix-jdk15on-1.60.jar"\bcpkix-jdk15on-1.67.jar"\bcpkix-jdk15on-1.67.jar.SAML20-module.Required"\bcpkix-jdk15on-150.jar"\bcpkix-jdk15on-150.jar.Required"\bcpkix-jdk15on-164.jar"\bcpkix-jdk15on-164.jar.Required"\bcpkix-jdk15to18-1.70.jar"\bcpkix-jdk15to18-1.70.jar.Email_Connector.RequiredLib"\bcpkix-jdk18on-1.75.jar"\bcpkix-jdk18on-1.75.jar.Encryption.RequiredLib"\bcprov-jdk15on-1.67.jar"\bcprov-jdk15on-1.67.jar.SAML20-module.Required"" \bcprov-jdk15on-164.jar"\bcprov-jdk15on-164.jar.Required"\bcprov-jdk15to18-1.70.jar"\bcprov-jdk15to18-1.70.jar.Email_Connector.RequiredLib"\bcprov-jdk18on-1.75.jar"\bcprov-jdk18on-1.75.jar.Encryption.RequiredLib"3 \bcutil-jdk15to18-1.70.jar"\bcutil-jdk15to18-1.70.jar.Email_Connector.RequiredLib"\bcutil-jdk18on-1.75.jar"\bcutil-jdk18on-1.75.jar.Encryption.RequiredLib"\checker-qual-2.5.2.jar"userlib\checker-qual-2.5.2.jar.CommunityCommons.RequiredLib"\checker-qual-3.8.0.jar"\checker-qual-3.8.0.jar.SAML20-module.Required"" \com.github.virtuald.curvesapi-1.06.jar"" \com.github.virtuald.curvesapi-1.06.jar.ExcelImporter.RequiredLib""userlib\com.google.guava-14.0.1.jar.CommunityCommons.RequiredLib"" \com.springsource.javax.activation-1.1.1.jar"" \com.springsource.javax.activation-1.1.1.jar.EmailTemplate.RequiredLib"" \com.springsource.org.apache.commons.logging-1.1.1.jar"" \com.springsource.org.apache.commons.logging-1.1.1.jar.SAML2.0-module.Required""\commons.lang3-3.1.0.jar"\commons.lang3-3.1.0.jar.XLSReport.RequiredLib"\commons-codec.commons-codec-1.13.jar"\commons-codec.commons-codec-1.13.jar.ExcelImporter.RequiredLib"\commons-codec-1.10.jar"\commons-codec-1.10.jar.EmailTemplate.RequiredLib"\commons-codec-1.11.jar"\commons-codec-1.11.jar.ExcelImporter.RequiredLib"\commons-codec-1.11.jar.XLSReport.RequiredLib"\commons-codec-1.13.jar"\commons-codec-1.13.jar.ExcelImporter.RequiredLib"\commons-codec-1.13.jar.XLSReport.RequiredLib"\commons-codec-1.14.jar"\commons-codec-1.14.jar.EmailTemplate.RequiredLib"\commons-codec-1.15.jar"\commons-codec-1.15.jar.Email_Connector.RequiredLib"\commons-codec-1.15.jar.SAML20-module.Required"\commons-collections-3.2.2.jar"\commons-collections-3.2.2.jar.SAML2.0-module.Required"\commons-collections-3.2.2.jar.SAML20-module.Required"\commons-collections4-4.2.jar"\commons-collections4-4.2.jar.ExcelImporter.RequiredLib"\commons-collections4-4.2.jar.XLSReport.RequiredLib"\commons-collections4-4.4.jar"\commons-collections4-4.4.jar.ExcelImporter.RequiredLib"\commons-collections4-4.4.jar.XLSReport.RequiredLib"\commons-compress-1.18.jar"\commons-compress-1.18.jar.ExcelImporter.RequiredLib"\commons-compress-1.18.jar.XLSReport.RequiredLib"\commons-compress-1.19.jar"\commons-compress-1.19.jar.ExcelImporter.RequiredLib"\commons-compress-1.19.jar.XLSReport.RequiredLib"\commons-httpclient-3.1.jar"\commons-httpclient-3.1.jar.SAML2.0-module.Required"\commons-io-2.3.jar"\commons-io-2.3.jar.RequiredLib.Deeplink"\commons-io-2.3.jar.SAML2.0-module.Required"\commons-io-2.3.jar.XLSReport.RequiredLib"\commons-io-2.6.jar"\commons-io-2.6.jar.CommunityCommons.RequiredLib"\commons-io-2.6.jar.ExcelImporter.RequiredLib"\commons-io-2.6.jar.RequiredLib"\commons-io-2.6.jar.XLSReport.RequiredLib"\commons-io-2.8.0.jar"\commons-io-2.8.0.jar.SAML20-module.Required"\commons-io-2.11.0.jar"\commons-io-2.11.0.jar.Encryption.RequiredLib"\commons-lang-2.6.jar"\commons-lang-2.6.jar.SAML2.0-module.Required"\commons-lang-2.6.jar.SAML20-module.Required"\commons-lang3-3.7.jar"\commons-lang3-3.7.jar.CommunityCommons.RequiredLib"\commons-lang3-3.9.jar"\commons-lang3-3.9.jar.XLSReport.RequiredLib"\commons-lang3-3.11.jar"\commons-lang3-3.11.jar.SAML20-module.Required"\commons-logging-1.2.jar"\commons-logging-1.2.jar.CommunityCommons.RequiredLib"\commons-logging-1.2.jar.SAML20-module.Required"\commons-math3-3.6.1.jar"\commons-math3-3.6.1.jar.ExcelImporter.RequiredLib"\commons-math3-3.6.1.jar.XLSReport.RequiredLib"\commons-pool-1.6.jar"\commons-pool2-2.9.0.jar"\commons-pool2-2.9.0.jar.SAML20-module.Required"\commons-text-1.8.jar"\commons-text-1.8.jar.LDAPSynchronizationModule.RequiredLib"\core-module-7.5.0.jar"\core-module-7.5.0.jar.Email_Connector.RequiredLib"\cryptacular-1.1.4.jar"\cryptacular-1.1.4.jar.SAML20-module.Required"\Email_Connector-1.0.0.jar"\Email_Connector-1.0.0.jar.Email_Connector.RequiredLib"\error_prone_annotations-2.2.0.jar"\error_prone_annotations-2.2.0.jar.CommunityCommons.RequiredLib"\error_prone_annotations-2.5.1.jar"\error_prone_annotations-2.5.1.jar.SAML20-module.Required"\esapi-2.1.0.1.jar"\esapi-2.1.0.1.jar.SAML2.0-module.Required"\eventTrackingLibrary-1.0.2.jar"\eventTrackingLibrary-1.0.2.jar.Email_Connector.RequiredLib"\failureaccess-1.0.1.jar"\failureaccess-1.0.1.jar.SAML20-module.Required"\FastInfoset-1.2.16.jar"\FastInfoset-1.2.16.jar.SAML20-module.Required"\fontbox-2.0.13.jar"\fontbox-2.0.13.jar.CommunityCommons.RequiredLib"\guava-27.0-jre.jar"\guava-27.0-jre.jar.CommunityCommons.RequiredLib"\guava-30.1.1-jre.jar"\guava-30.1.1-jre.jar.SAML20-module.Required"\hamcrest-2.2.jar"\hamcrest-2.2.jar.UnitTesting.RequiredLib copy"\HikariCP-2.6.1.jar"\HikariCP-2.6.1.jar.DatabaseConnector.RequiredLib"\httpasyncclient-4.1.3.jar"\httpclient-4.5.9.jar"\httpclient-4.5.13.jar"\httpclient-4.5.13.jar.SAML20-module.Required"\httpclient-cache-4.5.9.jar"\httpclient-osgi-4.5.9.jar"\httpclient-win-4.5.9.jar"\httpcore-4.4.13.jar"\httpcore-4.4.13.jar.SAML20-module.Required"\httpcore-nio-4.4.6.jar"\httpmime-4.5.9.jar"\istack-commons-runtime-3.0.8.jar"\istack-commons-runtime-3.0.8.jar.SAML20-module.Required"\j2objc-annotations-1.1.jar"\j2objc-annotations-1.1.jar.CommunityCommons.RequiredLib"\j2objc-annotations-1.3.jar"\j2objc-annotations-1.3.jar.SAML20-module.Required"\jakarta.activation-2.0.1.jar"\jakarta.activation-2.0.1.jar.Email_Connector.RequiredLib"\jakarta.activation-2.0.1.jar.SAML20-module.Required"\jakarta.activation-api-1.2.1.jar"\jakarta.activation-api-1.2.1.jar.SAML20-module.Required"\jakarta.mail-2.0.1.jar"\jakarta.mail-2.0.1.jar.Email_Connector.RequiredLib"\jakarta.mail-api-2.1.0.jar"\jakarta.mail-api-2.1.0.jar.Email_Connector.RequiredLib"\jakarta.xml.bind-api-2.3.2.jar"\jakarta.xml.bind-api-2.3.2.jar.SAML20-module.Required"\jakarta.xml.soap-api-1.4.1.jar"\jakarta.xml.soap-api-1.4.1.jar.SAML2.0-module.Required"\jakarta.xml.soap-api-1.4.1.jar.SAML20-module.Required"\jakarta.xml.soap-api-2.0.1.jar"\jakarta.xml.soap-api-2.0.1.jar.SAML20-module.Required"\java-support-7.5.1.jar"\java-support-7.5.1.jar.SAML20-module.Required"\javax.xml.soap-api-1.4.0.jar"\javax.xml.soap-api-1.4.0.jar.SAML20-module.Required"\jaxb-runtime-2.3.2.jar"\jaxb-runtime-2.3.2.jar.SAML20-module.Required"\jetbrains-runtime-annotations-1.0.1.jar"\jetbrains-runtime-annotations-1.0.1.jar.Email_Connector.RequiredLib"\jmail-1.2.1.jar"\jmail-1.2.1.jar.Email_Connector.RequiredLib"\joda-time-2.3.jar"\joda-time-2.3.jar.SAML2.0-module.Required"\joda-time-2.9.6.jar"\joda-time-2.9.6.jar.XLSReport.RequiredLib"\joda-time-2.9.jar"\joda-time-2.9.jar.SAML20-module.Required"\joda-time-2.10.5.jar"\joda-time-2.10.5.jar.XLSReport.RequiredLib"\json-simple.jar"\jsoup-1.15.3.jar"\jsoup-1.15.3.jar.Email_Connector.RequiredLib"\jsr305-3.0.2.jar"\jsr305-3.0.2.jar.CommunityCommons.RequiredLib"\jsr305-3.0.2.jar.SAML20-module.Required"\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar.SAML20-module.Required"\metrics-core-3.1.2.jar"\metrics-core-3.1.2.jar.SAML20-module.Required"\not-yet-commons-ssl-0.3.17.jar"\not-yet-commons-ssl-0.3.17.jar.SAML2.0-module.Required"\opencsv-4.1.jar"\opencsv-4.1.OQLModule.RequiredLib"\opencsv-4.6.jar"\opencsv-4.6.jar.XLSReport.RequiredLib"\opencsv-5.0.jar"\opencsv-5.0.jar.XLSReport.RequiredLib"\opensaml-2.6.6.jar"\opensaml-2.6.6.jar.SAML2.0-module.Required"\opensaml-core-3.4.5.jar"\opensaml-core-3.4.5.jar.SAML20-module.Required"\opensaml-messaging-api-3.4.5.jar"\opensaml-messaging-api-3.4.5.jar.SAML20-module.Required"\opensaml-profile-api-3.4.5.jar"\opensaml-profile-api-3.4.5.jar.SAML20-module.Required"\opensaml-saml-api-3.4.5.jar"\opensaml-saml-api-3.4.5.jar.SAML20-module.Required"\opensaml-saml-impl-3.4.5.jar"\opensaml-saml-impl-3.4.5.jar.SAML20-module.Required"\opensaml-security-api-3.4.5.jar"\opensaml-security-api-3.4.5.jar.SAML20-module.Required"\opensaml-security-impl-3.4.5.jar"\opensaml-security-impl-3.4.5.jar.SAML20-module.Required"\opensaml-soap-api-3.4.5.jar"\opensaml-soap-api-3.4.5.jar.SAML20-module.Required"\opensaml-soap-impl-3.4.5.jar"\opensaml-soap-impl-3.4.5.jar.SAML20-module.Required"\opensaml-storage-api-3.4.5.jar"\opensaml-storage-api-3.4.5.jar.SAML20-module.Required"\opensaml-xmlsec-api-3.4.5.jar"\opensaml-xmlsec-api-3.4.5.jar.SAML20-module.Required"\opensaml-xmlsec-impl-3.4.5.jar"\opensaml-xmlsec-impl-3.4.5.jar.SAML20-module.Required"\openws-1.5.6.jar"\openws-1.5.6.jar.SAML2.0-module.Required"\org.apache.commons.commons-collections4-4.4.jar"\org.apache.commons.commons-collections4-4.4.jar.ExcelImporter.RequiredLib"\org.apache.commons.commons-compress-1.19.jar"\org.apache.commons.commons-compress-1.19.jar.ExcelImporter.RequiredLib"\org.apache.commons.commons-math3-3.6.1.jar"\org.apache.commons.commons-math3-3.6.1.jar.ExcelImporter.RequiredLib"\org.apache.commons.io-2.3.0.jar"\org.apache.commons.io-2.3.0.jar.ExcelImporter.RequiredLib"\org.apache.commons.lang3.jar"\org.apache.commons.lang3.jar.RequiredLib.Deeplink"\org.apache.commons.lang3.jar.SAML2.0-module.Required"\org.apache.poi.poi-4.1.1.jar"\org.apache.poi.poi-4.1.1.jar.ExcelImporter.RequiredLib"\org.apache.poi.poi-ooxml-4.1.1.jar"\org.apache.poi.poi-ooxml-4.1.1.jar.ExcelImporter.RequiredLib"\org.apache.poi.poi-ooxml-schemas-4.1.1.jar"\org.apache.poi.poi-ooxml-schemas-4.1.1.jar.ExcelImporter.RequiredLib"\org.apache.xmlbeans.xmlbeans-3.1.0.jar"\org.apache.xmlbeans.xmlbeans-3.1.0.jar.ExcelImporter.RequiredLib"\org.slf4j.slf4j-api.jar"\org.slf4j.slf4j-api.jar.DatabaseConnector.RequiredLib"\owasp-java-html-sanitizer-20170515.1.jar"\owasp-java-html-sanitizer-20170515.1.jar.SAML2.0-module.Required"\owasp-java-html-sanitizer-20181114.1.jar"\owasp-java-html-sanitizer-20181114.1.jar.CommunityCommons.RequiredLib"\owasp-java-html-sanitizer-20200713.1.jar"\owasp-java-html-sanitizer-20200713.1.jar.SAML20-module.Required"\owasp-java-html-sanitizer-20211018.2.jar"\owasp-java-html-sanitizer-20211018.2.jar.SAML20-module.Required"\pdfbox-2.0.13.jar"\pdfbox-2.0.13.jar.CommunityCommons.RequiredLib"\poi-4.0.0.jar"\poi-4.0.0.jar.ExcelImporter.RequiredLib"\poi-4.0.0.jar.XLSReport.RequiredLib"\poi-4.1.1.jar"\poi-4.1.1.jar.ExcelImporter.RequiredLib"\poi-4.1.1.jar.XLSReport.RequiredLib"\poi-ooxml-4.0.0.jar"\poi-ooxml-4.0.0.jar.ExcelImporter.RequiredLib"\poi-ooxml-4.0.0.jar.XLSReport.RequiredLib"\poi-ooxml-4.1.1.jar"\poi-ooxml-4.1.1.jar.ExcelImporter.RequiredLib"\poi-ooxml-4.1.1.jar.XLSReport.RequiredLib"\poi-ooxml-schemas-4.0.0.jar"\poi-ooxml-schemas-4.0.0.jar.ExcelImporter.RequiredLib"\poi-ooxml-schemas-4.0.0.jar.XLSReport.RequiredLib"\poi-ooxml-schemas-4.1.1.jar"\poi-ooxml-schemas-4.1.1.jar.ExcelImporter.RequiredLib"\poi-ooxml-schemas-4.1.1.jar.XLSReport.RequiredLib"\replication.jar"\replication.jar.ExcelImporter.RequiredLib"\replication.jar.XLSReport.RequiredLib"\replication7.jar"\replication7.jar.ExcelImporter.RequiredLib"\simple-java-mail-7.5.0.jar"\simple-java-mail-7.5.0.jar.Email_Connector.RequiredLib"\slf4j-api-1.7.5.jar"\slf4j-api-1.7.5.jar.SAML20-module.Required"\slf4j-api-1.7.22.jar"\slf4j-api-1.7.22.jar.SAML2.0-module.Required"\slf4j-api-1.7.29.jar"\slf4j-api-1.7.29.jar.LDAPSynchronizationModule.RequiredLib"\slf4j-api-2.0.0-alpha1.jar"\slf4j-api-2.0.0-alpha1.jar.Email_Connector.RequiredLib"\slf4j-simple-1.7.5.jar"\slf4j-simple-1.7.5.jar.SAML20-module.Required"\slf4j-simple-2.0.0-alpha1.jar"\slf4j-simple-2.0.0-alpha1.jar.Email_Connector.RequiredLib"\smime-module-7.5.0.jar"\smime-module-7.5.0.jar.Email_Connector.RequiredLib"\spring-beans-5.2.1.RELEASE.jar"\spring-beans-5.2.1.RELEASE.jar.LDAPSynchronizationModule.RequiredLib"\spring-core-5.2.1.RELEASE.jar"\spring-core-5.2.1.RELEASE.jar.LDAPSynchronizationModule.RequiredLib"\spring-ldap-core-2.3.2.RELEASE.jar"\spring-ldap-core-2.3.2.RELEASE.jar.LDAPSynchronizationModule.RequiredLib"\spring-tx-5.2.1.RELEASE.jar"\spring-tx-5.2.1.RELEASE.jar.LDAPSynchronizationModule.RequiredLib"\stax2-api-3.1.4.jar"\stax2-api-3.1.4.jar.SAML20-module.Required"\stax2-api-4.2.1.jar"\stax2-api-4.2.1.jar.SAML20-module.Required"\stax-ex-1.8.1.jar"\stax-ex-1.8.1.jar.SAML20-module.Required"\txw2-2.3.2.jar"\txw2-2.3.2.jar.SAML20-module.Required"\utils-mail-smime-2.0.1.jar"\utils-mail-smime-2.0.1.jar.Email_Connector.RequiredLib"\velocity-1.7.jar"\velocity-1.7.jar.SAML2.0-module.Required"\velocity-engine-core-2.3.jar"\velocity-engine-core-2.3.jar.SAML20-module.Required"\woodstox-core-5.0.3.jar"\woodstox-core-6.2.4.jar"\woodstox-core-6.2.4.jar.SAML20-module.Required"\xercesImpl-2.12.0.jar"\xercesImpl-2.12.1-sp1.jar"\xercesImpl-2.12.1-sp1.jar.SAML20-module.Required"\xml-apis.jar"\xml-apis.jar.SAML2.0-module.Required"\xml-apis-ext.jar.CommunityCommons.RequiredLib"\xmlbeans-3.0.1.jar"\xmlbeans-3.0.1.jar.ExcelImporter.RequiredLib"\xmlbeans-3.0.1.jar.XLSReport.RequiredLib"\xmlbeans-3.1.0.jar"\xmlbeans-3.1.0.jar.ExcelImporter.RequiredLib"\xmlbeans-3.1.0.jar.XLSReport.RequiredLib"\xmlsec-1.5.7.jar"\xmlsec-2.2.3.jar"\xmlsec-2.2.3.jar.SAML20-module.Required"\xmltooling-1.4.6.jar"\xmltooling-1.4.6.jar.SAML2.0-module.Required"\animal-sniffer-annotations-1.17.jar"
↧
Does show more widget work in Mendix 10?
Hi Experts! I had used a show more widget on my application which was on version 9.24.23. Now that since I have upgraded it to version 10.12, the widget doesn't seem to be working. Has this widget been deprecated? if yes, then kindly suggest me a widget to achieve this functionality Thanks and Regards, Simran.
↧
How to pre-select a specific object in a list view
I want to pre-select a specific object in a list view. How can I do this? A data view is listening to this list view.
↧