Rank: Newbie Groups: Member
Joined: 1/21/2010 Posts: 4 Points: 12
|
Hello,
I'm facing the following issue. When I hit the EnterKey without a selected item, the error "Microsoft JScript runtime error: 'this._suggestionsList[...].TitleValue' is null or not an object" occurs. The same thing happens if I hit the enter key before I type anything else in the textbox.
Is there any way around this? I saw that on the example page this doesn't happen.
Thank You, Alex
|
Rank: Administration Groups: Administration
Joined: 11/18/2007 Posts: 80 Points: 152
|
Hi Alex, It is really hard to help you without any additional info. Can you post your code or give an URL on the page where the error happens?
Thanks Mikhail
|
Rank: Newbie Groups: Member
Joined: 1/21/2010 Posts: 4 Points: 12
|
I've managed to solve this issue by putting the following code on the textbox: onKeyDown="if(event.keyCode==13) return false;"
|