Hello guys !
I want too update the data in my data grid, is there a way to refresh it ? cause I cant find any :(Thank you so much
Hi @raven ransford just drag and drop the dataaction into the flow.Eg.
Regards
Jaya Kumar S
hey this works !Thank you so much @Jaya Kumar S
Yes, in OutSystems, you can refresh the data in a data grid using the "Refresh Data" action. The "Refresh Data" action is used to fetch the latest data from the server and update the data grid with the new information.
To achieve this, follow these steps:
Here's a step-by-step guide:
Now, whenever the trigger event is activated (e.g., button click or timer end), the "Refresh Data" action will be executed, updating the data grid with the latest data from the server.
Thankyou for your answerBut I can't find the Refresh data action on my toolbox
Hi @raven ransford,
Double click on your client action, which will open client action. Here you can find "Refresh Data" action in the toolbox. Drag and drop it and set source.
Hope it may help you to solve your problem.
Best of luck.
Hi Raven,
You can give it a try using the approach mentioned in this post: https://www.outsystems.com/forums/discussion/82816/datagrid-does-not-respond-to-schema-change/#Post346075
OutSystems.GridAPI.GridManager.GetGridById($parameters.GridWidgetId).provider._items.refresh();
Kind regards,
Benjith Sam