Hi,
this is shanker am doing one application my requirement is am catch particular delete column in rad grid in pretender event
this is my code
how to find
protected void fulldaygrid_PreRender(object sender, EventArgs e)
{
for (int i = 0; fulldaygrid.Items.Count > i; i++)
{
if(fulldaygrid.Items[i].Cells[6].Text=="YES")
{
GridColumn deleteColumn = fulldaygrid.MasterTableView.Items[i].Cells[0].GetColumn("DeleteCommandColumn");
if (deleteColumn != null) { deleteColumn.Visible = true; }
}
}
}
please send solution
thanks and regards
shanker.b