Hi I am using a telerik rad grid it works fine.
I am trying to get the row in edit mode on row click . here s the code
<ClientSettings EnablePostBackOnRowClick="true">
</ClientSettings>
And in he aspx.cs ItemCommand here s the code
protected void _gridProposalLines_ItemCommand(object sender, GridCommandEventArgs e)
{
if (e.CommandName.Equals("RowClick"))
{
e.Item.Edit = true;
}
}
This does not work !
Regards, Francis P.