Hi, I am a newbie with telerik controls. I added an unbounded control to my grid. Now I implemented the cellclick event of the grid and trying to get whether the user has clicked on the cell of unbounded column or any other column. For the rest of the columns it is working fine, but it doesn't notify when the user click on the cell of unbounded column. Here is the code, I tried
private void MasterTemplate_CellClick(object sender, GridViewCellEventArgs e)
{
if (e.Column.Name == "IS_INCLUDED") // My unbounded column Name is IS_INCLUDED
{
MessageBox.Show(e.Row.Cells["IS_INCLUDED"].Value.ToString());
}
else
MessageBox.Show(e.Column.Name);
}
Any help would be appreciated in this regard.
private void MasterTemplate_CellClick(object sender, GridViewCellEventArgs e)
{
if (e.Column.Name == "IS_INCLUDED") // My unbounded column Name is IS_INCLUDED
{
MessageBox.Show(e.Row.Cells["IS_INCLUDED"].Value.ToString());
}
else
MessageBox.Show(e.Column.Name);
}
Any help would be appreciated in this regard.