Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for PHP
»
Re: disable word & character count?
disable word & character count?
Last post 05-22-2011, 7:34 AM by
Eric
. 1 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
05-21-2011, 9:43 AM
67646
jmarcv
Joined on 05-11-2011
Posts 11
disable word & character count?
Reply
Quote
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
Eric
Joined on 08-05-2009
Posts 1,269
Re: disable word & character count?
Reply
Quote
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
[email protected]