Hi,
We have been using the LoadSettings() and SaveSettings() functions to persist the expression in a database.
We discovered that you have changed the internal format of this when we upgraded to Telerik UI for ASP.NET AJAX 2024 Q4 from Telerik UI for ASP.NET AJAX R1 2023. The old version used ViewState and the new one uses Json. The result of this is that the old expressions are not working anymore. This is a blocker for us. Do you have any solution to detect/convert the old persisted expressions in the new version? We have many expressions saved in the old format and it breaks the application.
The main reason for upgrading is that we are using your PDF document library to detect if files contains javascript actions and you introduced support for this after the 2023 version. We are checking files for Javascript in compination with your RadAsyncUplad since we do not want users to upload PDF files with javascript due to security reasons. It would have been nice to have access to the Javascript collection that are private. We had to use reflection to get to it. The reason for this is that the javascript is connected to OnOpen action. That one is not supported by public access.
Regards
Ole Oscar

Hello,
In the demo (https://demos.telerik.com/aspnet-ajax/editor/examples/trackchanges/defaultcs.aspx):
When I click the B/I/U buttons, the editor logs multiple Reformat actions and repeatedly applies the B/I/U tags. How can I prevent this?
Is there a way to disable Reformat actions in Track Changes mode? I only need to track insertions (ins) and deletions (del).
Thank you!

Hi
Im using Visual Studio 2022 and c#
I have a telerik RadGrid within my apsx page and I have set editMode="batch"
One of the columns SOStatus is a raddropdownList, with set items. When I select from the dropdown list and click on saveChanges within BatchEditCommand the SOStatus is blank, even though I have selected something. Not sure why?
Here is my ASPX
<telerik:GridTemplateColumn UniqueName="SOStatus" DataField="SOStatus" HeaderText="SO Status">
<HeaderStyle Width="80px" />
<ItemStyle Width="80px" />
<ItemTemplate>
<%# Eval("SOStatus") %>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadDropDownList ID="rdSOStatus" runat="server" DataValueField="SOStatus" DataTextField="SOStatus" Width="110%">
<Items>
<telerik:DropDownListItem Text="" />
<telerik:DropDownListItem Text="Sale" />
<telerik:DropDownListItem Text="Pull Forward" />
<telerik:DropDownListItem Text="Risk" />
<telerik:DropDownListItem Text="Drop for this week" />
<telerik:DropDownListItem Text="Drop" />
</Items>
</telerik:RadDropDownList>
</EditItemTemplate>
</telerik:GridTemplateColumn>
and here is the BatchEditCommand c# code
protected void rg_SalesPlan_BatchEditCommand(object sender, GridBatchEditingEventArgs e)
{
var batchEditingCommands = (List<GridBatchEditingCommand>)e.Commands;
foreach (GridBatchEditingCommand batchCommand in batchEditingCommands)
{
Hashtable oldValues = batchCommand.OldValues;
Hashtable newValues = batchCommand.NewValues;
string SOStatus = newValues["SOStatus"].ToString();
string OrigSOStatus = oldValues["SOStatus"].ToString();
}

Good afternoon,
I'm currently running Telerik UI for ASP.NET AJAX R3 2023. I am using the RadAsyncUpload with a AsyncHandler.ashx to copy the file to a RadUploadTemp on a file share.
This has been working perfectly for ages but recently large file updates have been failing e.g. a 2.1 GB file failing at 61%. I'm being told this is due to a TCP Zero Window issue.
I assumed the chunked upload mechanism mitigates the issues caused by TCP window size restrictions, which can cause slowdowns or failures when uploading very large files in a single request. I am setting the upload ChunkSize value to 4194304.
I have the following settings in web.config:
<system.web>
<httpRuntime maxRequestLength="2097151" executionTimeout="18000"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295"/>
</requestFiltering>
</security>
</system.webServer>Have you got any ideas as to why it might be failing for larger files, or what I can do to the configuration to prevent the TCP Zero Window error by pausing data transmission until the receiver is ready to accept more data?
Kind regards,
Richard

Hello Telerik Team,
We’ve received feedback from one of our customers regarding accessibility concerns with the RadMenu control. While we understand that the current RadMenu supports WCAG 2.1, the customer is aiming for full compliance with the WCAG 2.2 standard and has identified some gaps in that regard.
Specifically, they are requesting support for a scenario where a menu item both opens a new page and includes sub-menu items. They would like the behavior to follow the example described in this accessibility article:
https://hub.accessible360.com/kb/articles/529
Could you please advise:
We appreciate any guidance or recommendations you can provide to help us support our customer’s accessibility goals.
Judy Wang


Dear,
I use RadNumericTextBox with these options:
MinValue = 0
MaxValue = 9999999
NumberFormat.DecimalDigits = 2
MaxLength = 10
ShowSpinButtons = true
I see specific problem when I use any decimals. When I click on arrows (or type keyboard arrows) it increases/decreases by 1, but sometimes it stops on specific number (e.g. for 8.42 arrow down do nothing or for 63.42 arrow up doesn't work). I think there is a problem with javascript rounding and 8.42 - 1 is sometimes like 7.419999999999. It looks like a inner bug of the component.
Is it possible to format number first and make validation of length aftewards?
Is there any workaround for it?
Thank you

Hi
Im using visual studio 2019 .netframework using c#
I have a telerik Rad grid that is in Batch Mode and works great. Within rg_SalesPlan_BatchEditCommand it goes through each edited row and does an update to the database, if one of the records fails to update the error message is added to a variable which collects any other errors. One finished in the foreach loop if any errors occured a popup alert is displayed with the errors.
My problem is once I click OK to the alert to acknowledge the errors, the grid refreshes but Im unable to continue editing any other rows, If I click on a row nothing happen, until I click on Cancel or Save Changes button, then the grid goes back to normal.
Whats the best way to refresh the state of the grid so its back to normal please?
Thanks
Rakhee
Good morning
Was there issues with any recent updated to Telerik? I have just noticed that in Design View of my visual studio project, none of my Telerik RadGrds are displayed anymore. Instead I get a control box on each grid with the error "Sysem.NullReferenceException"