I have some pages where I need to disable the form related buttons. I can disable them with:
private string formfields = "InsertForm, InsertTextBox,InsertInputText,InsertInputhidden,InsertListBox,InsertDropDown,InsertRadioBox,InsertCheckBox,InsertInputSubmit";
Editor1.DisableItemList= formfields;
That works, but I can't re-enable them. I tried:
Editor1.EnableContextMenuInsertForms = CuteEditor.ContextMenuEnable.False ;
but that didn't work.
Any ideas?
-Pete