I am getting a resource key missing error from the new release of ASP.Net controls
Error
----------------------------------
Error: Cannot find a string resource with key 'ClearClass' in App_GlobalResources/RadEditor.Main.resx. Please, make sure that your custom localization has all needed resource strings, or copy the original localization resources from your installation folder to App_GlobalResources.
Exception: System.InvalidOperationException: Cannot find a string resource with key 'ClearClass' in App_GlobalResources/RadEditor.Main.resx. Please, make sure that your custom localization has all needed resource strings, or copy the original localization resources from your installation folder to App_GlobalResources. at Telerik.Web.LocalizationStrings.GetString(String key) at Telerik.Web.UI.Editor.MainStrings.get_ClearClass()
Stack Trace: at Telerik.Web.LocalizationStrings.GetString(String key) at Telerik.Web.UI.Editor.MainStrings.get_ClearClass()
Build
---------------------------------------------
RadControls_for_ASP.NET_AJAX_2008_2_1001_dev_hotfix.zip
<telerik:RadWindowManager id="Singleton" runat="server" EnableEmbeddedSkins="false" Overlay="true" Behaviors="Move,Close" > </telerik:RadWindowManager>
<asp:Button ID="btn1" runat="server" Text="Submit"
OnClientClick="radconfirm('Are you sure ?', confirmYes, 300, 100); return false;"/>
function confirmYes(arg)
{if(arg == true){
__doPostBack('btnYes','')}
}
Please give me any solution.
Thanks,
Tarulatta Patel.
| sender.set_value("Value"); |
| sender.set_text("Text"); |
| // sender.get_value() is null here!!! |
| sender.set_text("Text"); |
| sender.set_value("Value"); |
| // sender.get_value() has proper value |
Hi,
I am using a treeview in combobox. I am calling a javascript function on OnClientNodeChecked event.
rdTreeView.OnClientNodeChecked =
"nodeChecked";
This is working fine as long as I am not passing any parameter in the function.
function nodeChecked()
{
var tree = $find('RadComboBox1_i0_RadTreeView1');
var comboBox = $find('RadComboBox1');
var nodes = tree.get_checkedNodes();
var strText = 'you have selected ' + nodes.length + ' nodes';
comboBox.set_text(strText);
}
If I pass the value of combobox and treeview as parameter in function, it is being called on OnInit event and this is throwing javascript error.
As we are adding all controls at runtime and we are not sure how many controls will be added, we need to pass the Combobox and treeview as parameter.
What is the way of passing these parameters in this function?
Thanks,
Pankaj