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

Spell check window button issue

1 Answer 51 Views
Spell
This is a migrated thread and some comments may be shown as answers.
Rhbkv
Top achievements
Rank 1
Rhbkv asked on 16 Dec 2014, 04:48 PM
Hi,
I am using Telerik version 2012.3.1322.40.

I have spell check button in .aspx form as

<telerik:RadSpell ID="rdlSpellChk" Skin="Office2007" runat="server" ControlToCheck="txtSourceLang" TabIndex="3" />

When I click spell check button, popup window opens. But the buttons ignore, ignore all etc is hidden and i'm not able to resize the window as well.
Attached the screenshot for the same.

If i change browser zoom level as 75% or 150%, it looks fine. Is there any way to fix this problem
Thanks.
Haribala

1 Answer, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 17 Dec 2014, 09:30 AM

Hello Haribala,

Can your reproduce this problem with the latest version: http://demos.telerik.com/aspnet-ajax/spell/examples/overview/defaultcs.aspx? I am attaching here a screenshot from what I see on the demo with the Office2007 skin.

If the demo works fine for you, I suggest upgrading to the latest version, as it will also bring support for IE10, IE11, the current Chrome and Firefox.

Also, here is a way to change the dialog dimensions by using the RadWindow client-side API: http://www.telerik.com/help/aspnet-ajax/window-programming-radwindow-methods.html.

<telerik:RadSpell ID="RadSpell1" runat="server" ControlToCheck="Textbox1" Skin="Office2007" OnClientLoad="OnClientLoad" />
<script type="text/javascript">
    function OnClientLoad(sender, args) {
        var popup = sender._dialogOpener._container;
        popup.add_show(changeDimensions);
    }
    function changeDimensions(sender, args) {
        sender.setSize(600, 600);
        sender.center();
        sender.remove_show(changeDimensions);
    }
</script>



Regards,

Marin Bratanov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Spell
Asked by
Rhbkv
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Share this question
or