I am using the RadSpell with an MVC web application. The buttons at the side and bottom are cut off in both IE and Firefox. How can I change the width and height of the rad spell window?
2 Answers, 1 is accepted
0
Rumen
Telerik team
answered on 16 Mar 2012, 02:27 PM
Hello,
You can change the dimensions of the RadWindow spellchecker dialog using the following script:
var wnd = spell.get_dialogOpener()._getDialogContainer("SpellCheckDialog");
wnd.add_show(function () {
setTimeout(function () {
wnd.setSize(500, 500)
}, 10);
});
}
</script>
All the best,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.