disable word & character count?

Last post 05-22-2011, 7:34 AM by Eric. 1 replies.
Sort Posts: Previous Next
  •  05-21-2011, 9:43 AM 67646

    disable word & character count?

    Is there a way to remove this without
     $editor->ShowBottomBar=false;
    ??? 
     
    Its inaccurate anyway, so I dont want it.
     
    Type 123456 and enter
    character count  says 6
    Hit the space bar.  Now it is 9.
  •  05-22-2011, 7:34 AM 67650 in reply to 67646

    Re: disable word & character count?

    Dear jmarcv,
     
    You can set ShowWordCounth to false:
     
      <?php
                $editor=new CuteEditor();
                $editor->ID="Editor1";
                $editor->Text="Type Here";  
                $editor->ShowWordCount=false;
                $editor->Draw();
                $editor=null;           
                //use $_POST["Editor1"]to retrieve the data
            ?>
     
    Thanks for asking
View as RSS news feed in XML