Hi,
I am not sure if you are looking for properties to get the currented selected row and column, or a server side event that is fired when the current row/column changes. If you are just looking for the properties, you can find them here:
http://doc.essentialobjects.com/library/1/eo.web.grid.selecteditemindex.aspxhttp://doc.essentialobjects.com/library/1/eo.web.grid.selectedcellindex.aspxThe Grid does not fire server side event when the current row/column changes. So there is no direct equivalent to SelectedIndexChanged. You can however handle ClientSideOnItemSelected client side event and then call raiseItemCommandEvent client side method to trigger server side ItemCommand event when user has selected the item. Here is another post that explains how this works in detail:
http://www.essentialobjects.com/forum/postst3194_Which-event-to-use-after-user-selects-another-row-of-grid.aspx#13257Check the last post in that thread. As promised in the other thread, we are making a sample for this scenario. So please let us know if the other post sounds too complicated to you, we will make sure you receive this sample too. The actualy code is actually just a single JavaScript code call.
To get cell values, you use something like:
Code: Visual Basic.NET
obj = Grid1.Items(0).Cells(0).Value
Hope this helps.
Thanks!