Hi ,
I created a jqxComboBox. When i select each item from that combobox list, a execute a query to server to send the details of it.
Below is my query
$.ajax({ url: “herculestest.asp”,
type: “GET”,
data: { t: (new Date()).getTime(), trans: trans, msg: mesg },
async: false,
success: function(data) {
res=data;
}
});
return res;
Some items in the list takes aprox:3-6 sec to complete the query. During this time, the dropdown does not close atomatically. I issued $(“#jqxlibrarylist”).jqxComboBox(‘close’) and then execute above query. still does not work.
Can you please let me know why this jqxComboBox behaves like this?
My requirement is when i select an item a query to server will respond with some data and i will populate that data into jqxGrid.
Everything works fine, except the above small glitch. it looks very confusing when nothing happening on the screen and a dropdown is almmost dead during the query transaction.