Re: disable word & character count?

  •  05-22-2011, 7:34 AM

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