Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET AJAX > Spell > Help changing font size of Spell Check

Answered Help changing font size of Spell Check

Feed from this thread
  • Posted on Sep 15, 2011 (permalink)

    Hi,

    I've looked thru the forums, and can't seem to find an answer to my question so here goes:

    I have a Spell Check button on my web page, but my clients are complaining that the fonts are too small.  How is the easiest way to enlarge the fonts for the spell check find and replace dialog box?  Below is the code I use to implement:


    In the vb.net we set the fields to check spelling...
            Dim aar As Array = Split(ss, ",")
            RadSpellCheck.ControlsToCheck = aar


    In the asp.net
     <script type="text/javascript">
       function OnClientLoadx(spell)
       {
          spell.set_useClassicDialogs(true);
       }   
    </script>   
    <telerik:RadSpell ID="RadSpellCheck" runat="server" AllowAddCustom="False" OnClientLoad="OnClientLoadx"/>

    Thanks in advance for your assistance on this!!

    Reply

  • Answer Rumen Rumen admin's avatar

    Posted on Sep 16, 2011 (permalink)

    Hello Chuckrock,

    To increase the font size in the RadSpell dialog put the following classes

    #dialogControl_Suggestions, .RadSpell .RichTextView, .RadSpell textarea  { font-size: 18px; }

    in a CSS file and load the file through the DialogsCssFile property of RadSpell

    <telerik:RadSpell ID="RadSpellCheck" runat="server" AllowAddCustom="False" OnClientLoad="OnClientLoadx" ControlToCheck="Textbox1" DialogsCssFile="style.css"/>


    Best regards,
    Rumen
    the Telerik team
    Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal

    Reply

  • Posted on Sep 16, 2011 (permalink)

    That worked beautifully, Thanks so much for your quick assistance!

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET AJAX > Spell > Help changing font size of Spell Check
Related resources for "Help changing font size of Spell Check"

ASP.NET Spell Features  |  Documentation  |  Demos  |  Telerik TV  |  Self-Paced Trainer Step-by-step Tutorial  ]