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
Won't Fix
Last Updated: 14 Jan 2025 14:28 by ADMIN
Scheduled for 2025 Q1 (Feb)
Won't Fix
Last Updated: 14 Jan 2025 14:27 by ADMIN
Scheduled for 2025 Q1 (Feb)
When using:

Value = "(null)"
Text = "(no user)"

as item in the ListBox, the filter must work correctly, and after opening the menu the item should be checked if previously filtered.

Additionally if the item have NULL value instead of "(null)" The visible value must be localized. 
Won't Fix
Last Updated: 14 Jan 2025 14:26 by ADMIN
Scheduled for 2025 Q1 (Feb)
The Table Wizard dialog, the Table Properties tab shows Cell Padding and Cell Spacing fields, but this fields can only apply values. If you edit them through the HTML mode or the Properties Inspector module, the fields in Table Properties dialog will not be updated.
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>
Won't Fix
Last Updated: 14 Jan 2025 14:22 by ADMIN
Scheduled for 2025 Q1 (Feb)
There is a bug in the editor when using the image manager to insert an image after creating a new image.  This is recreated on the live demo site - http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

1. Open the image manager in the editor.
2. Click on an image editor after selecting an image.
3. Use the resizing tool to resize and save a new version of the image. 
4. Once the save is made, both images (the original and the newly created) are selected and when you click insert, both images will be inserted.
Won't Fix
Last Updated: 14 Jan 2025 14:21 by ADMIN
Scheduled for 2025 Q1 (Feb)
The manually entered value of RadDateTimePicker is replaced with the original one in Batch Edid mode in iPad.

To reproduce this incorrect behavior add a new 

<telerik:GridDateTimeColumn HeaderText="Start Date" UniqueName="StartDate" DataField="StartDate" DataFormatString="{0:MM/dd/yyyy}">
            </telerik:GridDateTimeColumn>

column in the Batch Edit demos of RadGrid and test under iPad. 

Tap over RadTextBox, enter some new date and press Go/tap out and you'll see the problem.
Won't Fix
Last Updated: 14 Jan 2025 13:54 by ADMIN
Scheduled for 2025 Q1 (Feb)
The following concerns the editing of tables within RadEditor using the out-of-the-box Delete Row and Delete Column commands:
Delete Rows:
- Click in a cell.
- Click the Delete Row button. The row is deleted.
- The Delete Row button is still enabled, but when I click it nothing happens. The cursor is in the expected location and I'm able to immediately begin typing. However, I must again click in the cell for the Delete Row button to work.

Delete Columns:
- Click in a cell.
- Click the Delete Column button. The column is deleted.
- The Delete Column button is disabled. If I begin typing or click in the table it becomes enabled and functional again.

The end-user should be able to repeatedly click either button and have it work until there aren't any more rows or columns left to delete.
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
Completed
Last Updated: 14 Jan 2025 13:49 by ADMIN
Release 2025 Q1 (Feb)
ADMIN
Created by: Dimitar
Comments: 1
Category: Menu
Type: Bug Report
0
A workaround is to set <DefaultGroupSettings OffsetX="WIDTH OF THE ROOT MENU" ExpandDirection="Left" />
Completed
Last Updated: 14 Jan 2025 13:46 by ADMIN
Release 2025 Q1 (Feb)
Won't Fix
Last Updated: 14 Jan 2025 13:34 by ADMIN
The following code will trigger the issue:
<ins author="Test user1" command="Insert" timestamp="1488935783059" title="Inserted by Test user1 on 3/7/2017, 5:16:23 PM" class="reU7">
<p cssproperty="verticalAlign" author="Test User2" timestamp="1488945891760" title="Formatted by Test User2 on 3/7/2017, 8:04:51 PM" class="reFormat reU0" command="Remove alignment"><span style="font-size: 12pt;">&nbsp;</span><span style="font-size: 12pt; font-family: 'Times New Roman';">This is some sample text.</span></p>
</ins>
When track changes are enabled and you try to delete from the end of this text, the deleted characters move to the following lines with a strikethrough rather than just deleting.
Completed
Last Updated: 10 Jan 2025 15:09 by ADMIN
Release 2025 Q1 (Feb)
Created by: Isha
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Currently, the TreeView is expecting touch events (touchstart, touchmove, touchend) to be triggered by touch devices,  while the Magic keyboard sends mouse events.
Completed
Last Updated: 06 Jan 2025 14:08 by ADMIN
Release 2025 Q1 (Feb)
With the latest version, RadSpell does not function properly and throws an error (h is not a constructor)
Pending Review
Last Updated: 02 Jan 2025 12:46 by Nate

Business Need - User Story Terminology:

As a Telerik Support Specialist, I would like our programmers to incorporate new code which will treat hyphens as if it were a space upon ExportToPdf() so that we gracefully handle for scenarios where a very long word with a hyphen will wrap to the next line instead of overlapping other content.

 

RadGrid.MasterTableView.ExportToPdf() - we would like telerik to update logic to do a normal word wrap when a hyphen exists rather than not wrapping when there's not enough room in the grid cell | View Ticket | Your Account

Unplanned
Last Updated: 18 Dec 2024 08:48 by ADMIN
Created by: Wojtek Kossowski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

I reeally would like to see the Blazor Sankey Chart component in the ASP.NET AJAX library!

Kind regards

Robert

Completed
Last Updated: 16 Dec 2024 14:03 by ADMIN
Workaround is to add the following function override at the end of the page (a sample is attached below)
				Telerik.Web.UI.Editor.Utils.isWindowDestroyed = function (window) {
					var doc;
					try{
						doc = window.document;
					} catch (e) {
						return true;
					}
					if(Telerik.Web.Browser.safari && !doc){
						return true;
					}
					return !doc.defaultView && !doc.parentWindow;
				}
Completed
Last Updated: 16 Dec 2024 13:59 by ADMIN
http://screencast.com/t/FJjlN3yw

The error message reads
'ContextMenus' could not be initialized. Details: Object reference on set to an instance of an object.
Won't Fix
Last Updated: 16 Dec 2024 13:57 by ADMIN
Several JS errors are trown when writing in re-focussed empty Editor in Chrome.

Video:  https://www.screencast.com/t/Wx6Ucs8m6S5w

First error's message:
RadEditor.js:10521 Uncaught TypeError: Cannot read property 'startContainer' of null


Steps to reproduce:
1. Open in Chrome: http://demos.telerik.com/aspnet-ajax/editor/examples/trackchanges/defaultcs.aspx
2. Switch to HTML mode and clear the whole content
3. Switch back to Design mode
4. Click any of the Bold/Italic/Underline commands
5. Click out of the Editor's element
6. Click back in the Editor's content area and start typing

Result: JS errors are thrown
1 2 3 4 5 6