Hi,
Simple question: why when I am allowed to set the GridDataItem ID in the ItemDataBound event of RadGrid, does it then get overwritten with a numeric ID specifying its position within the grid when it is rendered? Is it possible to stop this behaviour and have my own ID?
Thanks.
Simple question: why when I am allowed to set the GridDataItem ID in the ItemDataBound event of RadGrid, does it then get overwritten with a numeric ID specifying its position within the grid when it is rendered? Is it possible to stop this behaviour and have my own ID?
Thanks.
| if (e.Item is Telerik.Web.UI.GridDataItem) |
| { |
| e.Item.ID = "Whatver"; |
| } |
