Won't Fix
Last Updated: 11 Nov 2024 14:58 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: Editor
Type: Bug Report
1
There is a problem in Safari on Mac while selecting Table cell properties via the context menu when a table cell is selected. Its Wrongly selected in the Table Wizard window.

Reproduction steps:

- Load the default demo in Safari Mac: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

- Right click over the third cell in the second column ("Los Gigantes is located...") and choose Cell Properties.

- The Preview of the Cell Properties in the Table Wizard will show that the first cell is selected but not the right one.

Won't Fix
Last Updated: 11 Nov 2024 14:43 by ADMIN
Created by: croach01
Comments: 1
Category: Editor
Type: Bug Report
1
For a better description of the issue and reproduction steps, please view the ticket:

http://www.telerik.com/account/support-tickets/view-ticket?threadid=1010438

If a user clicks 'Ignore All' for a misspelled word, the focus moves to the next misspelled word after the last word included in the ignore all list.  This becomes problematic when editing a large quantity of text and the user's trying to go through things in order, but the focus moves to the very bottom of the content area.

In MS Word, it works as our users expect it would.  Once 'Ignore All' is chosen, the very next misspelled word is highlighted.

Won't Fix
Last Updated: 11 Nov 2024 14:38 by ADMIN
Inserting a new line after a link typically adds a new line and removes the copied link. 

However, this does not work when paragraph is about to be split. 

For the time being you can override the _nodeInsertedHandler method to resolve the bug as in this example:

<telerik:RadEditor runat="server" ID="RadEditor1">
     <Content>
         <p><a href="http://www.telerik.com" >link</a>text</p>
     </Content>
 </telerik:RadEditor>

 <script>
     Telerik.Web.UI.Editor.InsertParagraphCommand.prototype._nodeInsertedHandler = function (args) {
         var command = this,
             cursor = args.get_cursor(),
             container = args.get_container(),
             isEmptyContainer = command._isEmptyContainer(container, cursor),
             $E = Telerik.Web.UI.Editor,
             utils = $E.Utils;

         var parentAnchor = utils.getElementParentByTag(cursor, "A");

         if (command._isEmptyContainer(parentAnchor, cursor))
             command._removeNode(parentAnchor);

         if (isEmptyContainer) {
             if (command.get_editor().get_enableTrackChanges()) {
                 var tcUtils = $E.TrackChangesUtils,
                     parentTrackedInsert = tcUtils.getParentTrackChangesInsertNode(cursor, container),
                     parentTrackedDelete = tcUtils.getParentTrackChangesDeleteNode(cursor, container);
                 command._removeNode(parentTrackedInsert);
                 command._removeNode(parentTrackedDelete);
             }
         }
     };
 </script>
Won't Fix
Last Updated: 11 Nov 2024 14:21 by ADMIN
Having more than one editor on the page, with EditType="Inline", and using dropdown tools causes the event to be raised for the incorrect editor.
Won't Fix
Last Updated: 11 Nov 2024 14:20 by ADMIN
When the height of FileExplrorer is bigger that the current view port and an item from its right pane is selected, the content of the page jumps (the active element is brought to the top corner of the page).

video: http://screencast.com/t/Ezuteb3xIoCp
Won't Fix
Last Updated: 11 Nov 2024 14:15 by ADMIN
Won't Fix
Last Updated: 11 Nov 2024 14:14 by ADMIN
The tabs get hidden when a top oriented SlidingPane is docked inside a horizontal SlidingZone. The issue is reproducible when the resize mode of the parent Splitter is != AdjacentPane.

Steps to reproduce:
1. Run the following code:

        <div style="padding: 200px">
            <telerik:RadSplitter runat="server" ID="RadSplitter2" Orientation="Horizontal" ResizeMode="Proportional">
                <telerik:RadPane runat="Server" ID="radpane11" Height="20px" MaxWidth="980" Scrolling="None" BackColor="Green">
                    <telerik:RadSlidingZone ID="ListMetricsSlidingZone" runat="server" Height="25px" DockedPaneId="ListMetricsPane" SlideDirection="Top">
                        <telerik:RadSlidingPane ID="ListMetricsPane" Title="DEF" runat="server">
                            1111
                        </telerik:RadSlidingPane>
                        <telerik:RadSlidingPane ID="ListHistorySlidingPane1" Title="XYZ" Font-Size="X-Large" runat="server">
                            222
                        </telerik:RadSlidingPane>
                    </telerik:RadSlidingZone>
                </telerik:RadPane>
                <telerik:RadPane runat="Server" ID="radpane33" Scrolling="None">
                </telerik:RadPane>
            </telerik:RadSplitter>
        </div>

2. Undock and dock a sliding pane.

Expected: The tabs remains visible all the time (change the Splitters ResizeMode="AdjacentPane" for reference)
Won't Fix
Last Updated: 11 Nov 2024 14:12 by ADMIN
Won't Fix
Last Updated: 11 Nov 2024 14:10 by ADMIN
Won't Fix
Last Updated: 11 Nov 2024 14:08 by ADMIN
Created by: Tom
Comments: 2
Category: AsyncUpload
Type: Bug Report
1
The MaxFileSize property is an int - this means a limit over 2GB can't be set. Please change this property to a long. 
Won't Fix
Last Updated: 11 Nov 2024 14:06 by ADMIN
Won't Fix
Last Updated: 16 Aug 2024 11:21 by ADMIN
Won't Fix
Last Updated: 15 Aug 2024 14:25 by ADMIN
Won't Fix
Last Updated: 15 Aug 2024 14:24 by ADMIN
A function that is attached to this event is triggered on clicking the RadWindow's toolbar, even if it is already active. 
Won't Fix
Last Updated: 20 Jun 2022 14:49 by ADMIN
Won't Fix
Last Updated: 20 Jun 2022 14:43 by ADMIN
ContentEditable=true attribute is added to the body element of the Editor's content when resizing a table in RadEditor in Chrome.

http://screencast.com/t/0s3QlydHv
1 2 3 4 5 6