Check documentation for the latest version of dhtmlxSuite select DHTMLX Docs

select

marks an item as selected

void select( [string|number id] );
idstring|numberid of the item which should be selected, optional

Example

//select one record
myList.select(id);
//select all
myList.select();

Details

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

See also
Back to top