Hi,
In my editform (itemDatabound) I am trying to populate a dropdownlist thusly:
here is the error, I'm not sure what to do?
Exception Details: Telerik.Web.UI.GridBindingException: The current EditFormType does not support the requested editing capabilities.
Source Error:
In my editform (itemDatabound) I am trying to populate a dropdownlist thusly:
if
(e.Item is GridEditFormItem && e.Item.IsInEditMode)
{
GridEditFormItem item = (GridEditFormItem)e.Item;
GridEditableItem editedItem = e.Item as GridEditableItem;
GridEditManager editMan = editedItem.EditManager;
GridDropDownListColumnEditor editor = editMan.GetColumnEditor("NumericGrade") as GridDropDownListColumnEditor;
DropDownList ddlist = editor.DropDownListControl;
here is the error, I'm not sure what to do?
The current EditFormType does not support the requested editing capabilities.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: Telerik.Web.UI.GridBindingException: The current EditFormType does not support the requested editing capabilities.
Source Error:
|