Config option to control the display options

Last post 06-12-2009, 7:48 PM by esimuro. 2 replies.
Sort Posts: Previous Next
  •  06-12-2009, 3:23 PM 53098

    Config option to control the display options

     
    Assuming this display is there a config option to control when the options on the bottom of the screen are displayed.  The ones I am looing for specifically for are the display options of    Normal  HTML  Preview.   In read only more stopping this display would free more space for text 
  •  06-12-2009, 3:43 PM 53100 in reply to 53098

    Re: Config option to control the display options

    Editor.ShowHtmlMode Property

    Specifies whether the Html Mode tab appear.
     
    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->ShowHtmlMode=false;
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

    Editor.ShowPreviewMode Property

    Specifies whether the Preview Mode tab appear.

     

    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->ShowPreviewMode=false;
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

     

    See Also


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  06-12-2009, 7:48 PM 53106 in reply to 53100

    Re: Config option to control the display options

    what I was looking for was the ShowBottomBar property, I guess I was not very clear, thanks for the help
View as RSS news feed in XML