Completed
Last Updated: 02 Apr 2025 17:34 by ADMIN
Release 2025 Q2 (May)
ADMIN
Created by: Peter Milchev
Comments: 1
Category: Menu
Type: Bug Report
0

			
Completed
Last Updated: 02 Apr 2025 08:15 by ADMIN

Please create a method that will convert the old expressions to new format and make them re-usable again.

Completed
Last Updated: 01 Apr 2025 17:29 by ADMIN
Release 2025 Q2 (May)
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: Navigation
Type: Bug Report
0
One workaround is to remove nodes that are not visible, e.g., in the Page_Load event:

RadNavigation1.Nodes.RemoveAll(x => !x.Visible);

Another workaround is to remove the HTML of hidden nodes. Note that this will not affect the nodes collections and they will still be present. Invoking operations or methods on such removed nodes can cause errors.

			<telerik:RadNavigation runat="server" ID="RadNavigation1" OnClientLoad="OnClientLoad">
				<Nodes>
					<telerik:NavigationNode Text="first"></telerik:NavigationNode>
					<telerik:NavigationNode Text="second" Visible="false"></telerik:NavigationNode>
					<telerik:NavigationNode Text="third"></telerik:NavigationNode>
				</Nodes>
			</telerik:RadNavigation>
			<script>
				function OnClientLoad(sender, args) {
					var nodes = sender.get_allNodes();
					var indicesToRemove = [];
					for (var i = 0; i < nodes.length; i++) {
						if (nodes[i].get_element().style.display == "none") {
							$telerik.$(nodes[i].get_element()).remove();
						}
					}
				}
			</script>
Completed
Last Updated: 01 Apr 2025 09:01 by ADMIN
Release 2025 Q2 (May)
Created by: Russ
Comments: 0
Category: NumericTextBox
Type: Bug Report
0

Using the set_enabled() method of the NumericTextBox doesn't disable/enable the TextBox properly:

<telerik:RadCheckBox runat="server" ID="CheckBox1" OnClientCheckedChanged="onClientCheckedChanged" Text="Enable/Disable" AutoPostBack="false" />
<telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" />  

function onClientCheckedChanged(sender, args) {
    let numericTextBox = $find("<%= RadNumericTextBox1.ClientID %>");
    let isChecked = args.get_checked();

    numericTextBox.set_enabled(isChecked);
}
Completed
Last Updated: 05 Mar 2025 08:53 by ADMIN
Release 2025 Q2 (May)
Created by: Rodney
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
In RadEditor when specifying WordIgnoreOptions="None", I would expect that "THe" would be flagged as a misspelling, but it is not. It appears the WordIgnoreOptions is being ignored. 
Completed
Last Updated: 28 Feb 2025 12:50 by ADMIN
Release 2025 Q2 (May)
Completed
Last Updated: 27 Feb 2025 13:51 by ADMIN
Release 2025 Q2 (May)
Created by: Chris
Comments: 1
Category: Spell
Type: Bug Report
0

We have the latest update for Ajax installed today and have found an issue with the RadSpell control. If you type a value of 'tha' into a textbox/text area control that spell check will target, you will get an error 'Uncaught SyntaxError: Unterminated string in JSON' error in the console. This is able to replicated within the demo page of the Spell control.

https://demos.telerik.com/aspnet-ajax/spell/examples/overview/defaultcs.aspx?_gl=1*19wdrka*_gcl_au*NTA5NTg2MDEuMTc0MDYwNDU5NQ..*_ga*MjA4NzU2NTg4MC4xNzQwNjA0NTkx*_ga_9JSNBCSF54*MTc0MDYwNDU5MS4xLjEuMTc0MDYwNjI5Mi42MC4wLjA.

Remove the text in the first textbox in this page and replace it with 'tha' and in the console you will see the error shoot off.

Completed
Last Updated: 24 Feb 2025 12:37 by ADMIN

I am experiencing an issue in the Telerik Rad Editor where, after copying and pasting a long sentence in a single line, if I apply bold formatting to a word and place the cursor at the beginning of the bolded word, pressing Enter results in an empty line being inserted between the text. This behavior is reproducible on the Telerik webforms editor demo site as well.

I would appreciate any guidance on how to resolve this issue. Thanks in advance.

Completed
Last Updated: 20 Feb 2025 05:40 by CRM Masters
Release 2020 R2 SP1

Hello All,

I'm using a couple of Radbuttons to enable users to download some forms (in Word). This has stopped working in Chromium based browsers for some reason (new Edge, Chrome). It still works in Internet Explorer. No errors in the browser DevTools and no error on the server either.
It also does not work in Cassini (VS2017).

Not sure where to go from here - can anyone confirm/deny?

TIA - Marcus.

code stub:

<telerik:RadButton ButtonType="LinkButton" RenderMode="Lightweight" ID="btnName" runat="server" Text="Button Text" CssClass="TemplBtn" NavigateUrl="~/assets/someform.docx">
         <Icon PrimaryIconCssClass="rbDownload" />
</telerik:RadButton>

 

Completed
Last Updated: 18 Feb 2025 14:23 by ADMIN
Release 2025 Q1 Licensing Hotfix (18.02.2025)

Upgrading Telerik UI for ASP.NET AJAX to version 2025 Q1 (2025.1.211) throw a JavaScript error:

  • Uncaught TypeError: Cannot read properties of undefined (reading 'parentElement')

Steps to reproduce: Have a RadWindow with NavigateUrl set to a different page:

<telerik:RadWindow ID="RadWindow1" runat="server" RenderMode="Classic" VisibleOnPageLoad="true" NavigateUrl="Default.aspx">
</telerik:RadWindow>

Completed
Last Updated: 17 Feb 2025 15:02 by ADMIN
Release 2025 Q1 MSI Hotfix (20.02.2025)

When creating and upgrading Telerik UI for AJAX projects to version 2025.1.211 using "InstallFolder" distribution Telerik UI for ASP.NET AJAX references are not added to the project.

Completed
Last Updated: 17 Feb 2025 13:42 by ADMIN
Release 2025 Q1 Licensing Hotfix (18.02.2025)
Created by: Joel Kraft
Comments: 3
Category: DateRangePicker
Type: Bug Report
2

Error thrown:
Uncaught Sys.InvalidOperationException: Sys.InvalidOperationException: 'maxDate' is not a property or an existing field.

Setup for reproduction:

<asp:ScriptManager runat="server" ID="ScriptManager1"></asp:ScriptManager>

<telerik:RadDateRangePicker runat="server" ID="RadDateRangePicker1"
MinDate="2022-05-01" MaxDate="2022-05-01">
</telerik:RadDateRangePicker>

Completed
Last Updated: 17 Feb 2025 12:32 by ADMIN
Release 2025 Q1 Licensing Hotfix (18.02.2025)
Created by: rumen jekov
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

When pasting bullet lists from Microsoft Word into the editor, extra leading spaces (&nbsp;) appear in the list items. This causes unexpected indentation and formatting issues.

Before 2025 Q1

In 2025 Q1

 

Completed
Last Updated: 17 Feb 2025 10:20 by ADMIN
Release 2025 Q1 Licensing Hotfix (18.02.2025)

After upgrading to 2025 Q1, RadGrid throws the exception: 

Uncaught TypeError: t is not a function

Completed
Last Updated: 28 Jan 2025 12:35 by ADMIN
Release 2025 Q1 (Feb)
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: Spreadsheet
Type: Bug Report
1

The default font size on the client is not saved explicitly on the Excel file, so the Excel defaults take over (11px Calibri), so upon subsequent import all cells will have that font. Steps to repro: go to https://demos.telerik.com/aspnet-ajax/spreadsheet/examples/import-export/defaultcs.aspx export the file import the file Expected: nothing changes Actual: all cells are 11px Calibri

Workaround: Set a default font when the cell font is null

 

public override void SaveWorkbook(Workbook workbook)
{
    string path = "C:\\path-to-output.xlsx";
     
    for (int i = 0; i < workbook.Sheets.Count; i++)
    {
        for (int j = 0; j < workbook.Sheets[i].Rows.Count; j++)
        {
            for (int l = 0; l < workbook.Sheets[i].Rows[i].Cells.Count; l++)
            {
                string fontFamily = workbook.Sheets[i].Rows[i].Cells[l].FontFamily;
                workbook.Sheets[i].Rows[i].Cells[l].FontFamily = !string.IsNullOrEmpty(fontFamily) ? fontFamily : "Courier New";
 
                double? fontSize = workbook.Sheets[i].Rows[i].Cells[l].FontSize;
                workbook.Sheets[i].Rows[i].Cells[l].FontSize = fontSize.HasValue ? fontSize : 12;
            }
        }
    }
    workbook.Save(path);
}

 

Completed
Last Updated: 15 Jan 2025 07:56 by ADMIN
Created by: Jorge
Comments: 3
Category: ImageGallery
Type: Feature Request
2
I like to add my own buttons in the toolbar, for example to open new Windows, add more text to the description, specify if I like or dislike the picture.
Completed
Last Updated: 14 Jan 2025 16:24 by ADMIN
Release 2025 Q1 (Feb)
Created by: Don Leduc
Comments: 2
Category: Editor
Type: Bug Report
0
I have a big problem here. I have the following code and this code is launched in RadWindow as well:

<telerik:RadTabStrip runat="server" ID="RadTabStrip2" MultiPageID="RadMultiPage2" SelectedIndex="0">
    <Tabs>
        <telerik:RadTab Text="Add Response"></telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage runat="server" ID="RadMultiPage2" SelectedIndex="0">
    <telerik:RadPageView runat="server" ID="RadPageView11">
 
            <telerik:RadEditor Width="100%" EditModes="Design" ID="reReqCom" runat="server"  ContentAreaCssFile="~/AppRoot/Xml/RadEditor/EditorContentArea.css"
                ToolsFile="~/AppRoot/Xml/RadEditor/BasicTools.xml" Skin="Material" />
 
    </telerik:RadPageView>
</telerik:RadMultiPage>

 
The problem here is only using the iPhone (ioS), that the user is NOT able to select onto the RadEditor to begin typing. Seems to somehow block it out. I have stripped down to the basic code above and tested.

Can you tell us if this is a known issue?

Is there a workaround?

 

Don
Completed
Last Updated: 14 Jan 2025 14:23 by ADMIN
Release 2025 Q1 (Feb)
ADMIN
Created by: Ianko
Comments: 1
Category: FileExplorer
Type: Bug Report
0
Moving of folder from the tree to the grid works, but event is not raised. Also, there is no other suitable event that handles the situation. 

The following patch will raise the event, but  you should make sure to remove the override once the bug is fixed: 

<telerik:RadFileExplorer RenderMode="Lightweight" runat="server" ID="FileExplorer1" EnableCopy="true"
    OnClientMove="OnClientMove" OnItemCommand="FileExplorer1_ItemCommand" >
    <Configuration ViewPaths="~/Images" UploadPaths="~/Images"
        DeletePaths="~/Images"></Configuration>
</telerik:RadFileExplorer>     
 
<script>
    var origFunction = Telerik.Web.UI.RadFileExplorer.prototype._onTreeNodeDropping;
 
    Telerik.Web.UI.RadFileExplorer.prototype._onTreeNodeDropping = function (sender, args) {
        origFunction.call(this, sender, args);
        var destNode = args.get_destNode();
        if (!destNode) {
            var destElement = args.get_htmlElement();
            if (!destElement) return;
            var gridElement = this.get_grid();
            var grid = gridElement != null ? this._isOverElement(destElement, gridElement.get_id()) : null;
            if (grid) {
                var isCopying = this._enableCopy && args.get_domEvent().ctrlKey;
                var eventName = isCopying ? "copy" : "move";
                var args2 = new Telerik.Web.UI.FileExplorerEventArgs(this.get_tree().get_selectedNode(), this.get_currentDirectory());
                this.raiseEvent(eventName, args2);
            }
        }
    }
 
    function OnClientMove(sender, ev) {
        // Do something
    }
</script>
Completed
Last Updated: 14 Jan 2025 13:52 by ADMIN
Release 2025 Q1 (Feb)
Steps to reproduce:
1. go to demo url http://demos.telerik.com/aspnet-ajax/editor/examples/edittemplate/defaultcs.aspx
2. click add new record
3. try to manually resize editor. it won't.
4. click add new record again.
5  try to manually resize editor, now it will.
Completed
Last Updated: 14 Jan 2025 13:50 by ADMIN
Release 2025 Q1 (Feb)
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: Grid
Type: Bug Report
0
A workaround is to access the column and replace the text of the cell with a <label> control. Examples are attached below
1 2 3 4 5 6