Checked existing threads but didn't really understand how it works.
I use remote pagination and filtering. Would like to populate select options from db (without the limits from pagination).
I use in main object:
create: function (evt, ui) {
var grid = this,
column;
$.getJSON("test.php", function (response) {
column = grid.getColumn({ dataIndx: 'test2' });
// response is ["test1", "test2"]
column.filter.options = response;
});
}
but select is not populated...