I have this in my colmodel:
{title: "Aisle", width: 50, dataIndx: "Aisle", align: "center",
filter: {
type: 'select',
condition: 'equal',
listeners: ['change']
}
},
and this in my obj var:
create: function (evt, ui) {
var grid = this,
column;
$.getJSON("utilities/ajax_getaisles_JSON.php", function (response) {
column = grid.getColumn({dataIndx: 'Aisle'});
column.filter.options = response;
});
},
it puts 76 items in the options array but they don't display.