Hi,
when my radgrid is in edit mode , On pressing a button in the particular row (not a Update or Cancel) I need to fetch a cell value . Also I need to disable the edit mode. Wat i am using is
Aspx.cs
------------
when my radgrid is in edit mode , On pressing a button in the particular row (not a Update or Cancel) I need to fetch a cell value . Also I need to disable the edit mode. Wat i am using is
Aspx.cs
------------
protected
void btn_Click(object sender, EventArgs e)
{
Button btn = (Button)sender;
GridDataItem item = (GridDataItem)btn.NamingContainer;
TableCell cell = (TableCell)item["Id"];
string ID = cell.Text;
Label lbStatus = (Label)item.FindControl("lblStatus");
string Status = lbStatus.Text;
:
:
}
using this code i can fetch the status (lblStatus) value but the id value i got is  . How can i fetch the correct value of the cell "Id" & disable the edit mode pls help with a code. Thanx in advance..