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

Possible to not be a modal popup

1 Answer 54 Views
Spell
This is a migrated thread and some comments may be shown as answers.
scott
Top achievements
Rank 1
scott asked on 10 Jul 2010, 01:37 AM
Is it possible to have pop up be not modal? There are issues with the telerik modal settings and the css in the master page. It would be a lot easier if the pop up could not be modal and just be a standard pop up window.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 14 Jul 2010, 12:26 PM
Hi Scott,

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">
    functionOnClientLoad(spell, args) {
        spell.set_useClassicDialogs(true);
    }
</script>


Kind 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
scott
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or