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

Spell Checker for multiple controls on a page

3 Answers 43 Views
WebParts for SharePoint
This is a migrated thread and some comments may be shown as answers.
Michael McClain
Top achievements
Rank 1
Michael McClain asked on 05 Oct 2009, 11:11 AM
I am using the Rad MOSS Editor for my custom pages in a sharepoint application. The pages contain many textboxes apart from the Editor. I need to have a single spell checker on the page for all these textboxes and the Moss Editor. Is that possible? I tried using the RadSpell Control on the page but it did not work well for the Editor. Am i missing something here. Can i achieve this functionality? Please guide.


Thanks in Advance

3 Answers, 1 is accepted

Sort by
0
Stanimir
Telerik team
answered on 07 Oct 2009, 06:40 AM
Hi Michael,

You can use the RadSpell Control, however If you want to spell check the Editor as well you need to make a custom text source. You can find information in the following online demo http://demos.telerik.com/aspnet-ajax/spell/examples/textsource/defaultcs.aspx.


Kind regards,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Michael McClain
Top achievements
Rank 1
answered on 08 Oct 2009, 06:05 AM
I am using the Moss Editor (Telerik.Sharepoint) in the page which references the System.Web.Extensions version 3.5.0.0. and I see that the Rad Spell (Telerik.Web.UI) has a reference to the System.Web.Extensions version 1.0.61025.0. which creates a problem while using the Http Handlers.

I do not see a way out to use the same together. And to use the custom text source which you have mentioned in the demo, I would need the Rad Spell as well. Please correct me if i am missing something. If not, then how do I get both the controls work together on the same page. Thanks for your co-operation.
0
Stanimir
Telerik team
answered on 09 Oct 2009, 11:36 AM
Hi Michael McClain,

There are two Telerik.Web.UI.dll which come with Telerik ASP.NET AJAX Controls. One for .NET 2.0 and one for .NET 3.5.

If you want to use the first one you can try adding the following binding redirect to the web.config <runtime><assemblyBinding> section..
<dependentAssembly>
 <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
 <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
</dependentAssembly>
<dependentAssembly>
 <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
 <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
</dependentAssembly>



Best wishes,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
WebParts for SharePoint
Asked by
Michael McClain
Top achievements
Rank 1
Answers by
Stanimir
Telerik team
Michael McClain
Top achievements
Rank 1
Share this question
or