Check documentation for the latest version of dhtmlxSuite unselect DHTMLX Docs

unselect

removes selection from a certain item

void unselect( [string|number id] );
idstring|numberid of the item which needs to be unselected, optional

Example

//unselect one record
myDataView.unselect(id);
//unselect all
myDataView.unselect();

Details

if the id is not provided, the method works as unselectAll()

See also
Back to top