I've implemented autocomplete extender with a textbox,
I'm retreiving thousands of records in the autocomplete search, and depending on the value selected in the autocomplete search results i'm doing some other operation. ( I've associated a textchanged event with the textbox ).
My Problem - Though i'm retreiving thousands of records in the search, but the moment i drag the scrollbar to scroll down to see results, the textbox event is triggered and the scrollbar disappears. i.e i'm not able to scroll through the records.
I'm stuck on this issue for days now. Please suggest me a way so that i can scroll down all the records and able to trigger event based on the record selection.
Many thanks,
DotNetSpidy
MCP, MCTS
HAI I have just joined ajax community
I have read ur question and i just the problem here is that , u are using textchanged event due to when next item get selected textbox event is triggered ,
i will u to try lostfocus event for textbox , in this case when u can scroll all the values and event will be triggered as soon as textbox lost focus . (this is the way i use )
IS this helpful , please remind me
Can you post your code so we can get a full picture of what you are doing?
Tim
HI, thanks for replies,
I found the solution, set the Autopostback = false, use Ajax latest control toolkit, and implemented a OnClientItemSelected event of the Autocomplete extender, then i handled the event.
Thanks for help,
dotNetSpidy
No comments:
Post a Comment