This is a migrated thread and some comments may be shown as answers.

RadSpell overlay PDF?

1 Answer 62 Views
Spell
This is a migrated thread and some comments may be shown as answers.
Kevin Donahue
Top achievements
Rank 1
Kevin Donahue asked on 28 Oct 2010, 12:57 AM
Is there a way to make the spell check control (RadSpell) appear over the top of a PDF file which is in an IFrame?  For some reason the window frame goes behind the adobe pdf viewer.  I know for RadWindow there is an overlay property, which works, but this doesn't seem to exist for the RadSpell control.  Is there just some css I need to add?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 28 Oct 2010, 10:57 AM
Hi Kevin,

You can configure RadSpell to use the browsers' standard dialog instead of RadWindow using the set_useClassicDialogs(true) method, e.g.

<asp:TextBox ID="textbox1" TextMode="MultiLine" runat="server"></asp:TextBox>
<telerik:radSpell runat="server" ID="RadSpell1" ControlsToCheck="textbox1" OnClientLoad="OnClientLoad"></telerik:RadSpell>
<script type="text/javascript">
    function OnClientLoad(spell, args) {
        spell.set_useClassicDialogs(true);
    }
</script>

This will solve the problem.

Best regards,
Rumen
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Spell
Asked by
Kevin Donahue
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or