Hello Community,
Is it possible that when double clicking a record in a list, we are not redirected to the Form page of that record?
Example
- when double clicking a Contact Record in the Accounts Form page, we want nothing to happen.
2) Currently when we double click we are redirected to the Contact Form page
3) We can not allowed to modify the current apge config due to various reasons.
Is there any codesnippet to add in the DataGrid
Sasor
Like
1 comments
Best reply
16:41 May 20, 2025
You can add a property rowDoubleClick with an empty object to remove the ability to open the record by double clicking on a row:
{ "operation": "merge", "name": "TheListNameHere", "values": { "rowDoubleClick": {} } }
Ryan
16:41 May 20, 2025
You can add a property rowDoubleClick with an empty object to remove the ability to open the record by double clicking on a row:
{ "operation": "merge", "name": "TheListNameHere", "values": { "rowDoubleClick": {} } }
Ryan
Show all comments