Check documentation for the
latest version of dhtmlxSuite
sort DHTMLX Docs
Samples
Forum
Support
Documentation
/
Suite 5.X
add
attachEvent
bind
clearAll
dataCount
detachEvent
exists
filter
first
getCursor
idByIndex
indexById
item
last
load
next
parse
previous
remove
saveBatch
serialize
setCursor
sort
sync
unbind
update
Start
DataStore
DataStore API
Methods
sort
Sorts a dataset.
void
sort
();
Example
data.
sort
(
function
(
a
,
b
)
{
return
a.
Version
>
b.
Version
?
1
:
-
1
;
}
,
"asc"
)
;
Back to top