One of the columns in a jqgrid Grid contains a autocomplete textbox during the edit mode. The autocomplete is wired correctly with the ajax call to get the data for autocomplete.
When an item from the autcomplete list is selected using the mouse, the selection works correctly with no errors thrown. However when i use keyboard down arrow to select an item and then press enter key, the item does not get selected and infact the jquery.ui plugin for autocomplete throws an error, stating item is undefined.
The problem here is that both the jqgrid edit complete event and and autocomplete select event are listening to the enter key and the jqgrid edit complete event fires before the jquery.ui autocomplete’s select event and hence the edit cell is closed for editing and the select event of jquery.ui autocomplete plugin does not receive the selected item and hence we get the error item is undefined.
Can anyone suggest as to how to ensure that both the edit complete event and the autocomplete events COMPLETE successfully without the short circuit that is currently happening with the jqgrid’s edit complete event.????
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top