Completed
Last Updated: 31 May 2021 15:45 by ADMIN
Please add the new (Core) features for Drawer, PDF Viewer, Adaptive Grid and Adaptive Scheduler to the  ASP.NET AJAX controls.  Thanks.
Completed
Last Updated: 08 Nov 2019 11:26 by ADMIN
Release R1 2020
Created by: Randy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

I have a RadCheckboxList In an ASP Panel. When Enabling/Disabling the panel the CheckBoxList does not Enable/Disable.  I tested this with a simple mock up with additional controls that work as expected:

 

<asp:Panel ID="TestPanel" runat="server" Enabled="true">

<telerik:RadCheckBoxList ID="WeeklyDays" runat="server" Columns="4" AutoPostBack="false">

<Items>

<telerik:ButtonListItem Text="Monday" Value="2" />

<telerik:ButtonListItem Text="Tuesday" Value="4" />

<telerik:ButtonListItem Text="Wednesday" Value="8" />

<telerik:ButtonListItem Text="Thursday" Value="16" />

<telerik:ButtonListItem Text="Friday" Value="32" />

<telerik:ButtonListItem Text="Saturday" Value="64" />

<telerik:ButtonListItem Text="Sunday" Value="1" Selected="true" />

</Items>

</telerik:RadCheckBoxList>

<telerik:RadTextBox ID="TestText" runat="server"></telerik:RadTextBox>

<telerik:RadDatePicker ID="TestDate" runat="server"></telerik:RadDatePicker>

</asp:Panel>

<br />

<telerik:RadCheckBox ID="ToggleEnabled" runat="server" Text="Toggle Panel" AutoPostBack="true" Checked="true" OnCheckedChanged="ToggleEnabled_CheckedChanged"></telerik:RadCheckBox>

 

 

 protected voidToggleEnabled_CheckedChanged(objectsender, EventArgs e)

{

TestPanel.Enabled = Convert.ToBoolean(ToggleEnabled.Checked);

}

Completed
Last Updated: 14 Aug 2019 12:34 by ADMIN
Created by: Chris Dalessandri
Comments: 3
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Reproduction steps:

Go to the Telerik demo at https://demos.telerik.com/aspnet-ajax/textbox/overview/defaultcs.aspx
In the Comment box, type "one two".  Do not let the textbox lose focus.
Highlight "two" and start to drag it to move it before "one". The other text ("one") will disappear, and is gone forever, as far as I can tell.

It can be also reproduced with this configuration:

<telerik:RadTextBox RenderMode="Lightweight" runat="server" ID="RadTextBox3" Width="200px" EmptyMessage="Enter comment" TextMode="MultiLine" Height="100px" Resize="None"></telerik:RadTextBox>

Completed
Last Updated: 16 May 2019 15:54 by ADMIN
Created by: Sergey
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
3

Hello,

There seems to be a bug with the RadEditor "Find and Replace" feature. I have recorded a screencast available here documenting the issue and will also provide below the information written: https://www.screencast.com/t/MXFawxIPp

Reproduction Steps:

Expected: '<img' is replaced with '<picture'

Actual:'<img' is replaced with '&lt;picture'

Notes:This seems to be an issue with encoding as &lt; is a less than tag. As you can see in the video, I do not think there is a way to escape the character to allow it to be replaced correctly. If you have additional questions, please ask.

 

Best Regards

Completed
Last Updated: 09 Apr 2019 13:40 by ADMIN
Created by: Anne
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Completed
Last Updated: 11 Jun 2021 14:25 by ADMIN
Created by: Rathna
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

Hi,

It will be great to have a property in a raddock to automatically adjust its height/width to occupy the new space created when some other raddock in the layout is minimized. This will avoid the need for the user to adjust the height/width of the raddock which is still visible.

 

Completed
Last Updated: 11 Apr 2019 08:13 by ADMIN

I have a problem with the deletecommand of the asp.net radgrid control (Telerik.Web.UI 2019.1.215.40).

This happens only in the latest release of Chrome.

I hope you can replicate this issue and eventually fix it. 

Completed
Last Updated: 10 Apr 2019 15:26 by ADMIN
When the ribbon bar is set to RibbonBarFloating, RibbonBarPageTop or RibbonBarShowOnFocus the menus cut off so you can't access menu items that would be displayed below bounds of the ribbon bar.

You can see this happening at:

https://demos.telerik.com/aspnet-ajax/controls/examples/integration/ribbonbarandeditor/defaultcs.aspx?product=editor

I have also supplied a snip of the issue.
Completed
Last Updated: 02 Apr 2019 14:15 by ADMIN
Created by: Scott
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hi,

 

Trying to use a web testing tool (Selenium) and using xpath is not always working.  I was wondering if it would be possible to always add an ID property to controls, especially in drop downs etc. so that it can clicked properly.

Completed
Last Updated: 27 Mar 2019 21:46 by ADMIN
After the alert was confirmed, a Post Back is expected which does not happen due to a JavaScript exception: Cannot read property 'toString' of null
Completed
Last Updated: 10 Apr 2019 15:28 by ADMIN
Bug introduced in build 2019.1.115+ causes 3 extra <p>&nbsp;</p> when user presses Enter key in FireFox.  Happens when Editor is in a Wizard with more than one step.  Bug does not occur in builds prior to 2019.1.115.

Try this to reproduce:

 <telerik:RadWizard runat="server" ID="rwMain" BorderStyle="Solid" BorderColor="LightGray" BorderWidth="1px" RenderMode="Lightweight" DisplayNavigationButtons="True">
        <WizardSteps>
            <telerik:RadWizardStep ID="RadWizardStep2" Title="Content Template" StepType="Step">
                <h1>hello!</h1>
            </telerik:RadWizardStep>
            <telerik:RadWizardStep ID="RadWizardStep3" Title="Content Editor" StepType="Step">
                <telerik:RadEditor ID="ContentEditor" runat="server" RenderMode="Lightweight"></telerik:RadEditor>
            </telerik:RadWizardStep>
        </WizardSteps>
    </telerik:RadWizard>
Completed
Last Updated: 10 Apr 2019 15:41 by ADMIN

This can be reproduced with the following sample:

<telerik:RadWindow runat="server" ID="RadWindowWithEditor" Height="1000px" OnClientShow="fixEditor"
 
    OpenerElementID="Button5">
    <ContentTemplate>
        <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" Width="700px" Height="700px">
            <Content>
Lorem ipsum dolor sit amet
            </Content>
        </telerik:RadEditor>
    </ContentTemplate>
</telerik:RadWindow>
<asp:Button ID="Button5" Text="open the RadWindow" runat="server" />
<script type="text/javascript">
    function fixEditor() {
        setTimeout(function () {
            $find("<%=RadEditor1.ClientID %>").onParentNodeChanged();
        }, 100);
    }
</script>

 

Completed
Last Updated: 27 Feb 2019 08:52 by Marin Bratanov
Completed
Last Updated: 20 Mar 2019 15:28 by ADMIN
Created by: MailUp Dev
Comments: 5
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Using Firefox 64.0,  selecting an image doesn't appear the resizing handles which are located on each corner of the object
Completed
Last Updated: 20 Dec 2018 14:19 by ADMIN
Created by: Vinson
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When I try to replace a white space in RadEditor, it is able to replace the words at the first line. The second one and onwards are not able to replace.

Step:

1. Open 'Find And Replace' dialog.

2. Go to 'Replace' tab.

3. Enter a white space for 'Find' text box.

4. Enter any character or word for 'Replace With' text box.

5. Hit on 'Replace All' button.

Reproducible in content which contains table elements and in the live demo: https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
Completed
Last Updated: 06 Jan 2020 17:04 by ADMIN
Created by: Srini
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Request to addorder tracker component similar to the attached screen shot.

 

Srini

Completed
Last Updated: 11 Feb 2019 10:08 by ADMIN
ADMIN
Created by: Rumen
Comments: 3
Category: UI for ASP.NET AJAX
Type: Bug Report
0
I'm using couple of Rad Editor controls in my webpart and using ToolProviderID for performance optimization.
I'm initializing one rad editor toolbar from server side and using the same toolbar to provide other rad editors with their toolbar, Bascially I'm using ToolProviderID attribute to initialize other RadEditors, after doing this the Comments and Track Changes feature stop working although their options are selected in the toolbar.


<telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" EnableTrackChanges="true" EnableComments="true">
    <TrackChangesSettings Author="AuthorName" CanAcceptTrackChanges="true" UserCssId="reU0" />
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="AcceptTrackChange" />
            <telerik:EditorTool Name="RejectTrackChange" />
            <telerik:EditorTool Name="AcceptAllTrackChanges" />
            <telerik:EditorTool Name="RejectAllTrackChanges" />
            <telerik:EditorTool Name="EnableTrackChangesOverride" />
        </telerik:EditorToolGroup>
    </Tools>
</telerik:RadEditor>
<telerik:RadEditor ID="RadEditor2" runat="server" ToolProviderID="RadEditor1" EnableTrackChanges="true" EnableComments="true"></telerik:RadEditor>
<telerik:RadEditor ID="RadEditor3" runat="server" ToolProviderID="RadEditor1" EnableTrackChanges="true" EnableComments="true"></telerik:RadEditor>
Completed
Last Updated: 18 Jun 2020 14:12 by ADMIN
I am using the "PostbackTriggers" property of the Upload control, as described on your web site article "How to Persist Uploaded Files".

This works well for the situation where I need a postback on a control, but that control is not a "submit" control.

The problem comes when I use one of the "submit" controls (listed in the PostbackTriggers property), but a server side validation error occurs, and the form data (including uploaded files) is NOT saved to the DB.  (This is a type of validation that can only be done on the server side.)  In that case, the upload control loses the uploaded file information.  Thus two questions:

1.   Is there a way on the server side to tell the control that an error has occurred, and to continue to persist the uploaded file information?

2.   Is there a way for the upload control to ALWAYS persist the uploaded file information until told on the server side that I have extracted the information I need from it?
Completed
Last Updated: 17 Feb 2021 09:34 by ADMIN
Release R1 2021 SP1
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
RadButton's focus state styling is missing in Bootstrap.

Steps to reproduce:
1. Open https://demos.telerik.com/aspnet-ajax/button/examples/keyboardsupport/defaultcs.aspx?skin=Bootstrap
2. Focus any of the first buttons using the Tab key
    Result: No focus styles are applied
    Expected: Follow the steps above in Sunset skin

-----------------------------------------
Workaround:

        button.RadButton.rbButton:focus {
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
        }

Completed
Last Updated: 13 Dec 2018 16:38 by ADMIN
Created by: BALA
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
What is EOL for this version.
UI for ASP.NET AJAX R1 2017 SP1 (version 2017.1.228)