sorting

how to sort elements in combo list ?
In OptionsConnector(for grid) and in #connector_select_filter ?
And why ‘combo’ column type doesnt work(incorrect cell type) ?

how to sort elements in combo list ?

docs.dhtmlx.com/doku.php?id=dhtm … ect_filter

And why ‘combo’ column type doesnt work(incorrect cell type) ?

combo type requires dhtmlxgrid_excell_combo.js to be included (it’s provided only with PRO edition).

Undefined index: value at <…>/codebase/base_connector.php line 197
how to define id and value in render_sql() method ?

The second and the third parameters:

$filter1 = new OptionsConnector($res);
$filter1->render_sql(“SELECT country_id,country_name from countries”,“country_id”,“country_name(value)”);

take a look at the grid/05a_select_filter.html sample in the connector package

why filter list is not in xml after sort column ?
if i have multiple grids in tabbar, after sorting 1 column, filters are empty.

server-side sorting affects only grid data and doesn’t reload filters in header. Make sure that header configuration isn’t returned with data.

i have 1 window - 2 tabs, 1 grid in each tab.
if i get on first tab, then on second tab - there are data + filters on XHR xmls. if i go back to the first tab and sort column, XHR downloads only data and i have filters from second tab.