
<telerik:RadSpell
runat="server"
ID="radSpellChecker"
AllowAddCustom="false"
ButtonType="None"
DialogsCssFile="~/App_Themes/TelerikStyles/Spell/RadSpellDialog.css"
DictionaryLanguage="en-us"
EnableEmbeddedBaseStylesheet="false">
EnableEmbeddedSkins="false"
FragmentIgnoreOptions="None"
Skin="XYZ"
SpellCheckProvider="PhoneticProvider"
SupportedLanguages="en-US,English" WordIgnoreOptions="UPPERCASE,WordsWithNumbers"
</telerik:RadSpell>

RadAjaxManager.AjaxSettings.AddAjaxSetting(RadAjaxManager, updatePanel, AjaxLoadingPanel);
onCommand: function (sender, eventArgs) { var commandName = eventArgs.get_commandName(); if (commandName == "DeleteCommand") { var dataItems = eventArgs.get_tableView().get_dataItems(); var dataItem = dataItems[eventArgs.get_commandArgument()].get_dataItem(); deleteRow(dataItem); }
Hi there
Can anybody assist with this problem? I have a radEditor in an ASP.NET page using a MasterPage, which as you will know, uses ContentPlaceHolder controls to hold other controls, and which also prefixes the declared control id with that of the ContentPlaceHolder in question, e.g., from a server-side id of 'myRadEditor' the client-side id would end up being something along the lines of:
'ct100_myContentplaceholder_myRadEditor'
When it comes to using the client-side $find command, all of the examples I can find show the use of the following syntax:
<%= myServerSideID.ClientID %>
but as far as I know, this is only valid for Javascript embedded within the <SCRIPT></SCRIPT> 'node' of the the .aspx file. However, I have a set of external Javascript script files added dynamically and programmatically, rather than specified declaratively in the aspx files in question.
So my question is, how would I go about using the $find command to get a reference to a radEditor control, or indeed any telerik control, using a wildcard search for the server-side id (e.g., 'myRadEditor') from within an 'external' Javascript file, given that the
<%= ... %> syntax is not available?
Thanks very much if you can advise!
Regards