Hi,
I put radtextbox on that we put the onkeyup event it work in chrome,ie but not work in Firefox when enter key press but other than enter key it work in firefox.
Example:
<telerik:RadTextBox ID="mainSearchTxt" onkeyup="mainSearchTxt_keyup(event,id)" EmptyMessage="Content Search" Width="150px" runat="server"> </telerik:RadTextBox>
function mainSearchTxt_keyup(e, id) {
var unicode = e.charCode ? e.charCode : e.which;
alert(unicode);
}
This alert message show in firefox when all keypress except "Enter key" for that i need solution

Hello,
with increasing requirements for websites to fulfill WCAG 2.0 Guidelines, I noticed that RadDock is failing AAA tests just because it wraps Titles with an H6 tag, forcing developers to be aware of this in the hierarchy of Headers in a website. Why not use SPAN or P for this or at least allows us to define which Header tag to use in an option of the control?
What do you suggest to fix this for now?
Thank you

Dears we have a RadCloudUpload it does not upload files with an Arabic name to RadCloudUpload please see the attachment file.
thank you

In my radgrid when I click a row it fires the server side event OnSelectedIndexChanged. However, I am losing focus after postback and the arrow keys stop working to navigate up/down in the grid. As a work around I am setting the focus to a LinkButton control in the last selected row which gives me arrow key control back, but it does highlight the LinkButton which looks odd.
protected void Page_PreRender(object sender, EventArgs e){ rgOrderItem.SelectedItems[0].FindControl("lbtnPartNumber").Focus();}
How can I get focus on the RadGrid where the arrow keys will work but not focus on a control in the current row? I have tried focusing on labels, but arrow keys don't work I assume because labels don't except keyboard input. I have also tried the following:
// 1.rgOrderItem.Focus();// 2.rgOrderItem.MasterTableView.Focus();// 3.rgOrderItem.Parent.Focus();//4.rgOrderItem.MasterTableView.Parent.Focus();//5.rgOrderItem.SelectedItems[0].Focus();//6.rgOrderItem.SelectedItems[0].Parent.Focus();//7.rgOrderItem.SelectedItems[0].Parent.Parent.Focus();
I notice if I click on whitespace inside the grid and below the last row, my focus seems to be where it needs to be and my arrow keys work without anything selected in a grid row, but I can't figure out how to programmatical target this area. Please help. Thanks.

I would like to use the RadMonthYearPicker Component in an application with Swedish language. I need two Controls for letting the users to define a period. But I have a problem with setting the texts on the Today and Cancel buttons.
I've tried changing the settings in MonthYearNavigationSettings in the Page_Load, but just the first call for each Component makes an impact on the result.
For example:
rmypFromDatum.MonthYearNavigationSettings.CancelButtonCaption = "Avbryt";
rmypFromDatum.MonthYearNavigationSettings.TodayButtonCaption = "Idag";
rmypTomDatum.MonthYearNavigationSettings.TodayButtonCaption = "Idag";
rmypTomDatum.MonthYearNavigationSettings.CancelButtonCaption = "Avbryt";
then in the first Component, rmypFromDatum, the text on the Cancel Button is changed to "Avbryt", but the text on the Today button is English - Today. And vice versa - on the second Component the Today button has the text changed to "Idag" but the Cancel button has the text "Cancel.
When a button is clicked on the page and the page is reloaded both the buttons - Today and Cancel - get the Swedish texts.
What shall I do to make my Changes to be visible the first time the users open the Components. Please help!
Best regards,
Jenny

I've opened a support ticket but thought I'd post here just in case someone else has come across this problem and has a solution.
Nothing has changed in my code base that was working well yesterday in the older version of RCAJAX ... but as soon as I allowed the Telerik auto update process to go ahead and update my project to 2019.1.115.45 I got an error during the update but the log listed everything as "successful"? The error was:
"Request registry access is not allowed"
So I proceed to rebuild my project with the new 2019.1.115.45 and I got this dialog error:
"Line:8
Error: '$telerik' is undefined"
So I clicked Yes to debug and got a bunch of what looks like JSON code (not mine) and line listing, see attached pictures.
Any suggestions? This is why I fear using Telerik's automated update process, it has about a 75% failure rate ... for some strange reason I decided to see if anything has changed at Telerik, but I see their update process still seems to be plagued with issues.
Any hints? Go back to my prior version that was working well?
Rob.
I have VS 2013 and 2017 installed on my machine. While installing the extension from Visual Studio's "Extensions & Updates," it did not work. The log indicated that it did not like Version 2013. Then, I downloaded the vsix file from Visual Studio market place, and tried to install it manually only on the VS2017 using the following command:
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE>VSIXInstaller.exe /skuName:Pro /skuVersion:15.0 c:\temp\Telerik.Web.UI.VSPackage.vsix
It failed with, "This extension is not installable on any currently installed products."
The exact version of Visual Studio 2017 is 15.9.5.
I would appreciate the help.
Thanks.