Rank: Advanced Member Groups: Member
Joined: 6/4/2008 Posts: 38
|
Hello,
Is there an event where you get the "click" on an intem on the grid ?. I have seen the examples with Java Script, but I want to know if I can do it with VB, an event like instead ItemDeleted something like ItemSelected. This, to get the ID of the selected column.
Thanks lot
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You will need to handle the Grid's ItemCommand event: http://doc.essentialobjects.com/library/1/eo.web.grid.itemcommand.aspxMake sure the Grid is in Server running mode if you do not want to deal with any JavaScript. If the Grid is in Client mode, you will need to call the following JavaScript method to trigger this event: http://doc.essentialobjects.com/library/1/jsdoc.public.grid.raiseitemcommandevent.aspxThanks!
|