Hi, I wonder if someone can point me in the right direction..
I have a webcombo dropdown which I am using to display a grid, I have Type Ahead set to extended and all works well. My issue is as follows, I am using this webcombo to select a particular client and wanted to populate other controls on the same page dependant on which client is selected. My problem comes on how to select the client I am currently highlighted on. I didn;t want a button next to the webcombo to select it and post back, so was hoping that I could either use the enter key to select the client that is currently highlighted, or the mouse click on the grid to post back to the server and populate accordingly.
What is the best/easiest way of doing this?
Hope it all makes sense
Many thanks
Richard
You'll want to add an event handler for the selectedrowchange event of the webcombo. I think the behavior you're looking for is demontrated in the AgentManagement sample included with the product. Check out this link for the online version of that app. Click in the textbox and type in "ad" and then select an agent from the list. https://ko.infragistics.com/samples/aspnet/data-grid/application-styling
-Tony
Hi Tony
Many thanks for your reply, I had tried the onrowchange server event before but this is fired as the name suggests on every row change. Rather I would like to navigate the record set with arrow keys until I select the record I want, then press carriage return to fire the event. (I also would like to use the mouse to click as well which works at the moment obviously) I wonder if I can cancel postbacks on the client side (will check) if the key press is not carriage return?
If you have any further pointer would be grateful
Regards