or
| RadAjaxManager1.Attributes.Add("AjaxMode", "BlackScreen"); |
Hi Telerik,
I have a collection which binds to a grid. In the ItemDataBound event I’d like to access the obj which ties to the current row. How can I do that.
Secondly, I am using template Column, how should I access the control in that column
Thank you
| DataTable dt = new DataTable(); |
| dt.Columns.Add("Source", typeof(string)); |
| dt.Columns.Add("Value", typeof(string)); |
| IdentifiersGrid.DataSource = dt; |
| dt.Rows.Add(ids[0].Value, ids[1].Value); |