Re: Spell check: Wrong word count

  •  07-29-2011, 1:23 PM

    Re: Spell check: Wrong word count

    hi,
     
    this is Vinod. I am also using CuteEditor in our application. I am also facing the above problem.In spell check it gives me extra count for the wrong words.
     
    e.g. if I type 'test testd' in CuteEditor and open spell check window, it gives message as 'Word: 2 of 3'.
     
    there are only two words  and it gives count as 'Word: 2 of 3'.
    when I checked the HTML part of that text it was 
    <html>
         <head>
         </head>
         <body style="padding: 3px;">
             test testd<br />
         </body>
    </html>
     
    i think the extra count may be because of <br/> tag at the end. If I add 2 more <br/> tags at the end.
     
    <html>
         <head>
         </head>
         <body style="padding: 3px;">
             test testd<br /><br /><br />
         </body>
    </html>
     
    then it shows the count in spell check as 'Word: 2 of 5'.
    so I think the problem with the count is the HTML tags added by the CuteEditor.
     
     let me know if CuteEditor has any solution for this problem.
     
    thanks
    vinod.
     
     
     
View Complete Thread