Hi
I'm currently iterating through the master table columns like this :
I'm doing this to change each seperate cell to a specific number format, and chopping off the time on date values.
How can I also iterate through the currently expanded detail tables' columns to do the same?
I'm currently iterating through the master table columns like this :
protected void RadGrid1_DataBound(object sender, EventArgs e) |
{ |
foreach (Telerik.Web.UI.GridItem griditem in RadGrid1.MasterTableView.Items) |
{ |
griditem.Cells[ColNumber].Text |
} |
} |
I'm doing this to change each seperate cell to a specific number format, and chopping off the time on date values.
How can I also iterate through the currently expanded detail tables' columns to do the same?