Anyone else having trouble using Calypso with Mendix Studio Pro It’s true that this path does not exist, but it does for other projects, and I do not know why it is missing in some others.
↧
Calypso \theme\styles doesn't exist
↧
Segregate list with created date month-wise
Hi Community, I have a list with attribute created date (date and time) and would like to segregate this list month wise based on the created date. Basically I need to have a count for every month based on the created date. Any idea or suggestion how we can achieve this easily. Thanks in advance.
↧
↧
DataGrid 2 - Excel Export
Hello, I’m currently working on DataGrid 2 setting up an Excel Exporter, one of the requirements I’m stuck with is filtering the records and ONLY downloading the filtered records from the DataGrid. Has anyone solved this? or any help on how I should approach this? Thanks.
↧
Doubts about Data Sources from Data Hub Catalog
Hi everyone, I’m currently exploring the Data Hub Catalog, and I saw these 2 “Popular Data Sources” that aren’t published by members of my organization: Both SAMPLE_EmployeeDirectory and ExperienceDayProducts are from Mendix developer (I guess?). My questions are: Where do they come from, and I’m able to delete them from my Data Hub Catalog? If I publish an OData Service, it will be visible only for my company member, or can be found by every Mendix users?
↧
Changing User Language - mx.reloadWithState() not working (properly)
Hi Everyone, I am trying to let the user have the option to change the user language via a dropdown on a page. I followed the instructions in the Mendix Ref Guide: https://docs.mendix.com/refguide/translatable-texts/ So I used the mx.reloadWithState JavaScript Snippet on a Pop-Up page and calling/showing that page in the microflow in which I am changing the language. It seems to do what it’s supposed to do and refreshes the page but the language doesn’t change. For some reason it takes a while (sth. like 10-20 seconds) and if I refresh then the language changes. I can see that the user language gets changed correctly for the account and also the rest of the logic seems to work fine, except the translated texts are not showing. If I use the debugger and go through the microflow step by step it’s working perfectly. It almost feels like the browser / cache needs some time to get the translation ;) I tried a couple of things yesterday (different browsers, nanoflow instead of microflow, playing around with the refresh in client, having a delay before calling the “reload” pop-up and so on) and now I’m out of ideas and really clueless what’s the cause for this. I’d appreciate any help/idea how to fix this. Thanks in advance! Also I will put a more detailed description of the setup below. Cheers Jan More detailed description of the setup: Since it was requested to show language options in their respective language I created a “LanguageSelector” Entity associated with the User Account (1-1) with an enumeration attribute containing those different language options. Since I’m using the account object on a data view on that page I simply put a dropdown for the language selection on the respective page and added a on-change event with the microflow for changing the language → retrieving the System.Language depending on the selection → changing the account / user language to that language → committing the changes → calling the pop-up with mx.reloadWithState JavaScript snippet
↧
↧
Manage App Users
Hi everyone! I have a question regarding app users. I cannot add users. Out of all the team, just 1 person is allowed to add users. I can’t figure out why; in another app, even though I do not have all permissions like in this one, I am able to invite/add users. Does anyone have an idea what's going on and how I can fix it? This is how my peer sees the app user management section. This is how I see it.
↧
Integration with Azure AAD
Hi gurus, This is my first foray into Mendix, a PoC that accesses our APIs, secured via AAD and OAuth 2. To enable this, I have added the OpenIDConnect Single Sign-on (OIDC, OAuth2, SSO) marketplace module and configured it to retrieve a bearer token, used when accessing our APIs. This workflow is fired by the use of Anonymous users and redirecting them to an Anonymous_Home page that redirects them to the Microsoft login page. The then returns them to the User role home page. I don’t wish to use the Mendix login screens, but the OIDC configuration appears to be configurable only by an Admin role user. What is considered the best approach for application configuration, when no admin users exist? Thank you James
↧
Free Cloud Credentials
Hello, Hope you are well :) I've deployed some changes in Mendix Cloud EU (Free) but I am unsure about how can I login and test the app. More exactly here I tried using MxAdmin and password "1” but It doesn't work. Also, I don't really have an idea where can I set a user up or how to find out if there is already a user. Thanks, Marcian.
↧
Getting URL
Hi all, I'd like to get my application full URL as a string. e.g.)https://forum.mendix.com/index4.html I tried to create MicroFlow using 'GetApplicationUrl' JavaAction. However, I can only get my application root URL as we thought. e.g.)http://localhost:8080/ The reason I would like to do this is to control the screen based on the URL when accessing Application as anonymous user. I'm wondering how I can get these. Could anyone suggest any solutions? Thanks in advance!
↧
↧
Generate (but a editable) .pdf document
Hi everyone, I'm downloading the document template I generated without any problems. But my question is: I want this touch to be editable after downloading: so I should be able to make changes to it before printing. How can I do that? Advance thanks
↧
call the procedure of SQLSERVER to get the resultset,an error 'Parameter @pname was not defined for stored procedure' occurs.
I want to call the procedure of SQLSERVER to get the resultset, I used the Execute parameterize query of the database connector.When I run microflow, an error occurs. procedure com.mendix.modules.microflowengine.MicroflowException: com.mendix.systemwideinterfaces.MendixRuntimeException: com.microsoft.sqlserver.jdbc.SQLServerException: Parameter @pname was not defined for stored procedure proc_selectProject. at AwsTestModule.Microflow_Sql_Procedure_Get_SelectList (JavaAction : 'Execute callable statement') Advanced stacktrace: at com.mendix.modules.microflowengine.MicroflowUtil.processException(MicroflowUtil.java:83) Caused by: com.mendix.core.CoreRuntimeException: com.mendix.systemwideinterfaces.MendixRuntimeException: com.microsoft.sqlserver.jdbc.SQLServerException: Parameter @pname was not defined for stored procedure proc_selectProject. at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.scala:84)
↧
Publishing REST service with oauth2
How can we publish a REST service using tokens with oauth2? How can we generate and provide the tokens and how can we check if a token is valid?
↧
Sending files using RESTCall
Hi Experts, I am trying to call the file upload API using the RestCall activity, but it is not working. I have set the content of the file document as a parameter to the API, but the data registered on the API side is incorrect. It seems that the data is Base64-enabled on the RESTCALL side. (The API is provided by a third party and does not do Base64 decoding.) Please tell me how to avoid Base64Encode in RESTCALL. Best regards.
↧
↧
Hiding Error Messages in Xas/ in Network tab while inspecting a particular page.
Hi, Consider we’re having a form with microflow validations. when the end user fills the form incorrectly he’ll see the validation messages (Client activity: Validation Feedbacks) and he’ll correct the fields. while inspecting that particular page, in Network Tab Xas/ will be displaying. In that Xas/ there’s response JSON structure. In that JSON structure I wanna hide the error messages(error fields in screenshot). Does any one know how to hide them. Please give me some tips inorder to hide those error messages. Note:- I want that validations messages to be displayed to End User but I don’t want those data validations while inspecting the particular page.
↧
Not able to publish MindSphere Operations Insights Example App
I´m quite new to Mendix and thought that the Operations Insights App would be a nice start. I not able to publish the app and can’t get any kind of error message to work with. The error messages I get are these: I don´t get any other errors at the Errors tab in Mendix Studio Pro. Did anyone get a similar error or know where I can get mor input for my issue? Since I´m new please excuse if I missed something. The Docs page: https://docs.mendix.com/partners/siemens/mindsphere-example-app
↧
Show list of items with chosen attributes (selfmade dropdown)
Good evening, Can someone help me with pluggable widgets and list values? I have a datasource which returns a list. this list comes in as followed: list: ListValue;
translatable: ListExpressionValue; After that I want to use an expression where you can choose which attributes are shown (in a custom dropdown because we need more values (and no, we don’t want helpers to create a string) {this.props.list.items?.map(d => (
))} Does somebody know how to do this? the list exists, the items are available (id’s) but the expressionvalue get function isn’t working for me. Kind regards, Steven
↧
User-id and password when testing my app
I’m using Mendix Studio – and when trying to test my published app it asks for a User-id and password . Anybody can tell me which combination to use? Of course, my Mendix ID + pw doesn’t work. --andreas
↧
↧
why form in list doesn't work?
why form in list doesn't work?
↧
Error while running app in version 9.11.1
We recently upgraded mendix studio pro from version 9.4.0 to 9.11.1. Since then, getting the below error while running and the server isn’t starting. 2022-03-16 06:03:42.245 INFO - M2EE: Added admin request handler '/prometheus' with servlet class 'com.mendix.metrics.prometheus.PrometheusServlet' [rtlauncher:container$] INFO Container start took 2105. Ready to accept admin requests. Tried creating a new app in version 9.11 and running that gives the same error as above.
↧
How to make roles based on entities
So by example I have an entity called applicant I want to display something based on his Id
↧