Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Spell > Rad Spell custom Image
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Answered Rad Spell custom Image

Feed from this thread
  • Senthil ramna avatar

    Posted on Jul 29, 2010 (permalink)

    I did as told in the below link
    http://www.telerik.com/help/aspnet/spell/useimagebuttonforspellchecking.html

    i am using RadSpell 2009.1.311.35

    the thing is as told in the thread set localization in page load i could not find the property localization.
    also i am unable to get my cutom image in place of SpeellCheck
    could you guide me please.

  • Answer Rumen Rumen admin's avatar

    Posted on Jul 30, 2010 (permalink)

    Hello Senthil,

    You have found a help article which applies to RadSpell Classic only, but the solution is not applicable for RadSpell for ASP.NET AJAX.

    You can see an example of RadSpell rendered as ImageButton at http://demos.telerik.com/aspnet-ajax/spell/examples/whatsnew/defaultcs.aspx.

    Here is an example:

    <%@ Page %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     
    <head runat="server">
        <title></title>
        <style type="text/css">
            .rscLinkImg
            {
                background-repeat: no-repeat;
                text-indent: -9999px;
                width: 20px;
                height: 20px;
                display: block;
                border: 1px solid #404040;
                background-color: #ebebeb;
                outline: none;
                 
            }
     
        </style>
     
    </head>
    <body>
        <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server" />
     
        <div>
            <asp:TextBox ID="TextBox1" Text="This ist a test" runat="server"></asp:TextBox>
            <telerik:RadSpell ID="RadSpell1" runat="server" ButtonType="ImageButton" ControlToCheck="TextBox1"
                SupportedLanguages="en-US,English" />
     
        </div>
        </form>
    </body>
    </html>



    Kind regards,
    Rumen
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Spell > Rad Spell custom Image