Thank you for your reply. It is very much appreciated. I've been stuck on what will likely turn out to be a very simple issue for a couple of days now and I really need to get it figured out. I've tried this:
{ title: "Test", width: 130, dataIndx: 1,
filter: { type: 'textbox', condition: 'begin', listeners: ['keyup'] },
editor: {
type: 'select',
init: function (ui) {
ui.$cell.find("select").pqSelect();
},
options: [,1,2,3,4,5],
},
}
and this:
{ title: "Test", width: 130, dataIndx: 1,
filter: { type: 'textbox', condition: 'begin', listeners: ['keyup'] },
editor: {
type: 'select',
options: [,1,2,3,4,5],
getData: function (ui) {ui.$cell.find("select").pqSelect();}
},
}
but I get the same results, which is the dropdown works and displays ,1,2,3,4,5 and I can select any of the options, but when I tab or click out of the field, the value is blank and the selection does not appear to be retained.
With the exception of this snag, which I understand is likely due something I am doing wrong, I'm loving Paramquery so far and look forward to continuing my evaluation once I figure out how to make the select option work. I really appreciate any assistance you can provide.