Hi guys can you please help me to find out this issues:
i am using radgrid with a webuserForm but when i click on Update button i can't get the values of the control of the row that i've already selected
on the radgrid itemCommand event I have this code
i am using radgrid with a webuserForm but when i click on Update button i can't get the values of the control of the row that i've already selected
on the radgrid itemCommand event I have this code
protected void lstCompetitions_ItemCommand(object source, GridCommandEventArgs e)
{
switch (e.CommandName.ToString())
{
case "Update":
{
GridEditableItem editedItem = e.Item as GridEditableItem;
string cell = (editedItem["txtdescription"].Controls[0] as TextBox).Text;
break;
}
}
and this is the error
base {Telerik.Web.UI.GridException} = {"The current EditFormType does not support the requested editing capabilities."}
what's wronge?