i have a mendix project where i want to achieve the following, the user enter the page use the input area to send messages and the message appear in a list view above the input box. I created the non persistable entity in the domain model and added a list view on the page, the list view uses a microflow as source that retrive the list of objects. the input area has a button with microflow that receive the list checks if is empty, if empty create the list, create object and commit them. Still when i run the app i cant see any message appearing. What i do wrong and what can i change to achieve the desired output?
1
There are 1 best solutions below
Related Questions in MENDIX
- Mendix to sap bapi integration issue
- Objects Array isn't being passed to useState despite the function working as intended when being logged
- Passing an association to a pluggable widget
- How to handle and work with Non-Persistable Entities
- How to remove the context in input reference set selector?
- How to sort searchable selector in ascending order in data view?
- Mendix Java ERROR: operator does not exist: bigint = character varying Hint: No operator matches the given name and argument types
- Mendix Validation Check with existing record
- Java error: java.io.IOException: Stream closed when trying to import a zip file into Mendix using Java action
- Setting "Field Name" via Dropdown Instead of Textbox in PDFTron forms
- Running Onnx file from Mendix studio pro
- Plotly Chart Shape. Label function not reflecting in UI
- How to enrich AEM package using a low code no code platform(Mendix or OutSystem)
- iOS Safari App putting URL at the bottom of printed Label
- What is the best way to retrieve data with dates from the last month in Mendix and compare them using XPath?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The problem here probably is that you somehow have to refresh the context of the page in order to retrigger the datasource of the listview that show your non persistent entities.
One approach would be to have an entity in a dataview on the page, to wich the list view items are associated. You can then refresh that object, and associate your new objects in a one-to-many relationship to that object. You can then just show the association in the listview instead of a datasource.