Hello, I am using DataGrid2 to display a list of approximately 1000 entries, with a microflow as the data source. I want to update the DataGrid2 list only when a button is clicked, rather than having it update automatically. Is it possible to implement this? Any hints would be appreciated.
asked
Raghavendra Bhagwat
2 answers
0
Maybe call a nanoflow with a javascript action to refresh the page:
mx.reloadWithState();
Or wrap it in a dataview and refresh the object.
answered
Martin Koelewijn
0
Hello Raghvendra,
in property there is Refresh time: -The time (in seconds) the grid waits between refreshing the data. Auto-refreshing is turned off when the value is 0.
so, using this you can add custom content column and add your logic.