Disable AND Enabling buttons

  •  03-18-2006, 11:41 AM

    Disable AND Enabling buttons

    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
View Complete Thread