How can I catch the event that combogrid selection finished, when multiple selection possible.
My intention is to dynamically draw a table rows and a total row based on the selected items from combo grid.
I can append a table row each time one item is selected. But for the total row I would like to catch the end of selection.
Any help / ideas appreciated..
I tried onblur like this but not working.
$("#invoice_ids").combogrid().blur(function(){
alert("onblur");
});