Are there any buildin methods for doing sorting or whats the

Hello,

   I’m using DHTML Grid Combo.I would like to do sorting in that combo.Are there any buildin methods for doing sorting or whats the way of doing sorting for that combo.

Pls find below code snippet for my grid combo

 <column width=‘120’ type=‘coro’ align=‘center’><![CDATA[Name<span style=‘color:red’>*</span>]]>

  Help me to get sort the grid combo.Thanks!

Grid can be sorted by any column , by using grid.sortRows method

    grid.sortRows(0,“str”,“asc”); //sort first column as string in ascendant order

The sorting available for all column types, including co|coro
The sorting by column clicking can be enabled , by specifying it directly in column header

     <column width=‘120’ type=‘coro’  sort=“str”

dhtmlx.com/docs/products/dht … d_art_sort