
After a client event had processed all the selected rows in a CRM view, I wish to unselect them programmatically so that users do not need to unselect them and they can continue to select other rows for further processing.
Currently, i do it via
location.reload(true);
Is it the best approach?
Tiong
*This post is locked for comments
I have the same question (0)Tiong,
You can use the grid.Refresh() rather than location.reload(true)
Assuming you have the grid object.
I tried before and it works refreshing only the subgrid, easier and more convenient and faster for users.
Thanks.