Is there an ID property for row object?
The reason I ask: To use AJAX TK HoverMenuExtender to create hover menu outside the grid, need to use ID of row as TargetControlID. Microsoft's grid does have row ID.
If there is no equivalent row ID, is there a way to create hover menu outside UltraWebGrid? Thanks.
Hi Chris,
Each WebGrid row can be referenced with an ID in the DOM, but the row objects themselves don't have ID properties (on the server side). The ID's are constructed as follows [GridID]_r_[row index]. So for example, the first row of "UltraWebGrid1" will have an id of UltraWebGrid1_r_0
Hope this helps,
-Tony
Thanks, Tony!
I need server side row ID like Microsoft's grid to use HoverMenuExtender to show a menu for the row that mouse is over, and the hover menu should be outside the grid.
Is there any pure Infragistics way to do this?