How to automatically select a newly created record in a Datagrid?

0
When creating a new record in a datagrid, via button New, the new record gets created, but the datagrid does not change it's selected record to the newly created one. How can I make the datagrid automatically select the newly created record? There is also a listen-to dataview beneath the datagrid which I expect to show the details of the newly created record. Attempting to make that work.
asked
2 answers
1

In addition to Ward's answer,

Also set "store createdDate" to on in the properties of your entity.

Then sort your grid descending on this attribute(or if you wish you could use another, as long the new created object is sorted as first row)

Then switch "Select first" in your datagrid settings to yes. Then after the refresh it will select the first record and you achieved your desired functionality.

Regards

answered
1

Is the New button a standard button? You should make an Action button with the caption New, and the put a microflow behind it, where you create the object. You can then select Refresh in client in the options of the create action. The the selection should change to this object.

answered