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: 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.
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.
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