Knowledgebase Home Page  >  RapidSpell Web ASP.NET  >  Appearance Customization
Search the Knowledge Base
How can I remove the horizontal / vertical scroll bar in the inline spell checker textbox?
https://keyoti.com/kb/Default.aspx?ToDo=view&questId=118&catId=57

Options

Print this page
Email this to a friend
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. 
 
 

Related Questions:

Attachments:

No attachments were found.