Hi,
How should i find controls inside RadGrid OnItemCommand event??
Thanks
Amit Choudhary
How should i find controls inside RadGrid OnItemCommand event??
protected
void
grdMessageState_ItemCommand(
object
sender, Telerik.Web.UI.GridCommandEventArgs e)
{
if
(e.CommandName == RadGrid.InitInsertCommandName)
{
SysXTextBox testName = e.Item.FindControl(
"txtStateName"
)
as
SysXTextBox;
testName.Focus();
}
}
}
Thanks
Amit Choudhary