I use the Select event of the DropDownList, in order to open another web page.
Is it possible for me to support “incremental search”? This is where the user types in multiple characters to find the desired row.
Currently, the user must type very quickly, and it does work, but you really have to type fast.
Is there a way – maybe a different event? – which would only fire once the user either:
a) Clicks the desired row, or
b) Navigates away from the DropDownList?
Here is my code:
// Create a jqxDropDownList
$(“#propfilter”).jqxDropDownList({width: ‘250px’, height: ’20px’});
$(‘#propfilter’).on(‘select’, function (event) {
var args = event.args;
var item = $(‘#propfilter’).jqxDropDownList(‘getItem’, args.index);
if (item != null) {
location.href = ‘home.php?userid=5&skey=3D8Dm9nVUNXiwL2zdPL4&prop=’ + encodeURIComponent(item.label); }
});
Thank you.
Victor Reinhart
GrayMatterLLC