How to unselect a row Asked by Puneet11 years ago. Hi, I am using the dp.rowClickHandling = "Select" and then assigning an action to the selected row... but... once the action is completed i need to unselect the row programatically. How can that be done? how-tojavascript
Answer posted by Dan Letecky [DayPilot]11 years ago. You can clear the selection using rows.selection.clear(): dps.rows.selection.clear();
Comment posted by Dan Letecky [DayPilot]11 years ago. Just a note: The user can deselect the row using Ctrl+click.