Declined
Last Updated: 24 Jun 2022 11:32 by ADMIN
The default focus in the dialog should provide a meaningful action if enter is pressed. The Ignore button would be one such. If you feel like another button/element should have the default focus, share your comments. You can find attached a sample that provides tabIndexes and default focus. This improvement is related to http://feedback.telerik.com/Project/108/Feedback/Details/126937
Completed
Last Updated: 11 Aug 2021 18:40 by ADMIN
FIX Setting Enalbled="false" for RadSpell does not have effect on the control.

The disabled="disabled" attribute is applied to the main wrapper of the control instead of to the button.

The following script is a possible workaround:
	<asp:TextBox ID="Textbox1" runat="server" />
	<telerik:RadSpell ID="RadSpell1" ControlToCheck="Textbox1" Enabled="false" OnClientLoad="OnClientLoad"
		runat="server" />
	<script type="text/javascript">
		function OnClientLoad(sender, args)
		{
			if ($telerik.$(sender.get_element()).attr("disabled") == "disabled")
			{
				$telerik.$("input[type='button']", sender.get_element()).attr("disabled", "disabled");
			}
		}
	</script>

It will work as-is for a regular push button. If the ButtonType is changed the script needs to change to get the appropriate element (e.g. anchor for the LinkButton).
Completed
Last Updated: 09 Jun 2021 16:15 by ADMIN
Wave Structure/Order is giving an error for RadSpell Control at "Not in Dictionary" label and Suggestions label. Hence our 508 testing is not passed. 

Please find the attachment for more details.

URL is: http://demos.telerik.com/aspnet-ajax/spell/examples/overview/defaultcs.aspx

Missing <h1> of Spell Check at the top of the dialog.

Not in Dictionary and Suggestions should not be headings they should be form labels.


Thanks
Completed
Last Updated: 07 Jan 2021 15:44 by ADMIN
Created by: Patrick
Comments: 1
Category: Spell
Type: Feature Request
0
I would like to have RadSpell should automatically check the words through the available dictionaries. 

If we attached two dictionaries to the editor / textbox, may be one word not found in English but the same word can be found in German. So it will be better to check both dictionaries before giving the suggestions.

Thanks
Declined
Last Updated: 28 Jul 2016 12:49 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: Spell
Type: Feature Request
1
Currently, only a few of the mistkaes are shown in the "Not In Dictionary" box. Once a word is changed or ignored, new ones are added. When the number increases, words from the beginning are removed.
This property/method should let the spell control show all the text at once.
Completed
Last Updated: 03 May 2016 13:45 by Priyanka
Created by: Sreenivas
Comments: 1
Category: Spell
Type: Feature Request
1
RadSpell's dialog should have proper tabIndex order to provide keyboard navigation. You can find attached a sample that lets you provide the desired order. When the buttons are disabled the browser should not focus them (i.e., the disabled attribute should prevent this even if tabIndexes are not modified). Related to this improvement request: http://feedback.telerik.com/Project/108/Feedback/Details/126935
Completed
Last Updated: 24 Feb 2016 16:10 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: Spell
Type: Bug Report
0
The error (Uncaught TypeError: Cannot read property 'mouseup' of undefined or SCRIPT5007: Unable to get value of the property 'mouseup': object is null or undefined ) manifests in Chrome and IE9 only and only if you have a debugger on, otherwise the page simply disposes without issues.
Completed
Last Updated: 08 Jan 2016 14:00 by ADMIN
You can find more information about the problem, cause and repro in the following thread: http://www.telerik.com/community/forums/spell-check-hander-error-the-length-of-the-string-exceeds-the-value-set-on-the-maxjsonlength-property
Won't Fix
Last Updated: 28 Dec 2015 17:47 by ADMIN
Click the misspelled word with the mouse and it changes to a textarea that you can edit. This has to be available through the keyboard as well. Related to http://feedback.telerik.com/Project/108/Feedback/Details/126937-add-tabindex-attributes-to-the-radspell-dialog-elements
A possible workaround is attached. The DialogScriptFile is used to add tabIndexes and override some internal methods in order to provide a keyboard event. In the sample the misspelled word TabIndex is hardcoded to 2 and you need to leave room for it, regardless of the position you choose. It cannot be dynamic.
Unplanned
Last Updated: 27 Mar 2015 15:05 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: Spell
Type: Feature Request
0
RadSpell uses a RadWindow for its dialog which, in turn, uses RadFormDecorator. Thus, RadSpell should expose its RenderMode property in order to allow the developer to make the popups consistent on the page (i.e. avoid mixing modes which is not supported) and to avoid styling issues with the dialog.
Currently the following web.config setting can be used to change the rendering mode of all RadWindows in the application, including the ones used by RadSpell:
<add key="Telerik.Web.UI.Window.RenderMode" value="Lightweight" />
and this one for the RadFormDecorators:
 <add key="Telerik.Web.UI.FormDecorator.RenderMode" value="lightweight" />
Completed
Last Updated: 05 Mar 2015 15:57 by ADMIN
The issue is preventing the users from adding a word to RadSpell custom dictionary.

A workaround is attached. You can apply the DialogScriptFile property to all RadSpell instances through an ASP Theme. The bug will be fixed in Q1 2015 SP1, so as soon as you upgrade to this release (or a later one), you should remove the workaround.
Declined
Last Updated: 15 May 2014 07:51 by ADMIN
Our Client requirement is to hide the X Close button on RadSpell Dialog. 

Added below code to hide from CSS which works fine:

 .RadWindow_Default .rwControlButtons A
        {
            display: none !important;
        }   
.RadWindow .rwControlButtons A
        {
            display: none !important;
        }   

Now the requirement is when CSS is disabled, user should not see the Close link.

"There is a 'Close' link that appears when CSS is disabled within the dialog. This link does not appear on the page with CSS enabled. Please find the attachment.

Is there any way we can hide/disable this X Close link/button from JavaScript or CodeBehind.

Thanks