Knowledge Base


Keyoti KB Knowledgebase Home Page  >  RapidSpell Web .NET  >  Appearance Customization

Search the Knowledge Base Browse by Category
How can I remove the horizontal / vertical scroll bar in the inline spell checker textbox?
http://keyoti.com/kb/Default.aspx?ToDo=view&questId=118&catId=57

Options

Print this page
Email this to a friend
Post a comment
Currently CSS control over the x / y scrollbars in div elements is not standard, it can only be set in Internet Explorer.  If you must remove either scroll bar, you can do it with the following code (note it seems safe in browsers that don't support it as well).
 
  <script type="text/javascript">
   function customStyle(){
    document.getElementById("TextBox1_D").style.overflowX = "hidden";
   }
  </script>
 
.......
 
 <body  onload="customStyle()">
 
 
Where TextBox1 is the ClientID of the text box being spell checked, and overflowX specifies horizontal, and overflowY would specify vertical. 
 
 

Visitor Comments:

No visitor comments posted. Post your comments.
 
Related Questions:

Attachments:

No attachments were found.



About | Contact | Site Map | Privacy Policy

Copyright © 2002-2010 Keyoti Inc.