Completed
Last Updated: 12 Feb 2014 09:36 by ADMIN
Created by: Sylvain
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Hi,

Before, I use devexpress and they give me all the file for his control to translate it in French
Do tou have the same thing with your control ?
Thanks
Sylo
Completed
Last Updated: 21 Jul 2016 15:12 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Currently, controls that have popups can have their z-index controlled as explained here: http://www.telerik.com/help/aspnet-ajax/controlling-absolute-positioning-with-zindex.html

RadComboBox has an explicit ZIndex property. Should all controls with popup elements have such a property?
Completed
Last Updated: 16 Jul 2015 15:27 by ADMIN
Completed
Last Updated: 03 Jul 2017 15:20 by Marlian
ADMIN
Created by: Hristo Valyavicharski
Comments: 7
Category: UI for ASP.NET AJAX
Type: Feature Request
21
UploadedFiles collection needs to be available across post backs.
Completed
Last Updated: 16 Apr 2014 10:48 by Michael
For the time being the following workaround can be used.

JavaScript:

    <script>
        function pageLoad() {
            var chart = $find("<%=RadHtmlChart1.ClientID%>");
            chart._chartObject.options.categoryAxis.axisCrossingValue = [0, 3];
            chart.repaint();
        }
    </script>
ASPX:

        <telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="600px" Height="400px">
            <PlotArea>
                <Series>
                    <telerik:ColumnSeries AxisName="axis1">
                        <SeriesItems>
                            <telerik:CategorySeriesItem Y="30" />
                            <telerik:CategorySeriesItem Y="20" />
                            <telerik:CategorySeriesItem Y="10" />
                        </SeriesItems>
                    </telerik:ColumnSeries>
                    <telerik:ColumnSeries AxisName="axis2">
                        <SeriesItems>
                            <telerik:CategorySeriesItem Y="3100" />
                            <telerik:CategorySeriesItem Y="2700" />
                            <telerik:CategorySeriesItem Y="1400" />
                        </SeriesItems>
                    </telerik:ColumnSeries>
                </Series>
                <XAxis AxisCrossingValue="2">
                    <Items>
                        <telerik:AxisItem LabelText="item 1" />
                        <telerik:AxisItem LabelText="item 2" />
                        <telerik:AxisItem LabelText="item 3" />
                    </Items>
                </XAxis>
                <YAxis Name="axis1">
                </YAxis>
                <AdditionalYAxes>
                    <telerik:AxisY Name="axis2"></telerik:AxisY>
                </AdditionalYAxes>
            </PlotArea>
        </telerik:RadHtmlChart>
Completed
Last Updated: 04 Jul 2014 08:45 by ADMIN
Created by: Roy
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
3
New control that can create / read / write PDF documents similar to "removed by admin"
Declined
Last Updated: 12 Feb 2014 10:04 by ADMIN
Created by: Roy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
New control that can encrypt an email (SMIME). Look at http://www.rebex.net/secure-mail.net/
Completed
Last Updated: 11 Mar 2014 12:58 by ADMIN
FIX: $create of controls with same parent are created in reverse order if using RadAjax
Completed
Last Updated: 12 Nov 2014 09:24 by Elena
ADMIN
Created by: Ianko
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
On opening the TemplateManager dialog under IE11 the loading panel is not hiding.

Due to this issue, the user cannot operate with this dialog under IE11.

The following example setup is resolving the issue:

<telerik:RadEditor runat="server" ID="RadEditor1"
    OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientCommandExecuted(editor, args) {
        var commandName = args.get_commandName();

        if (commandName === "TemplateManager" && $telerik.isIE) {
            var dialog = editor.get_dialogOpener()._dialogContainers["TemplateManager"];

            dialog.add_activate(fixDialog);
        }
    }

    function fixDialog(dialog) {
        dialog._onWindowUrlChanged();
        dialog.remove_activate(fixDialog);
    }
</script>
Unplanned
Last Updated: 26 Sep 2014 12:19 by Avi
Declined
Last Updated: 26 Sep 2014 12:00 by ADMIN
Currently when we use virtualization in GridTemplateColumn, after scrolling columns changes from GridTemplateColumn to GridBoundcolumn. 
Unplanned
Last Updated: 22 Jan 2014 16:34 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
When the popup elements lack boundary detection e.g.: they don't take into consideration the proximity to the edge.
Declined
Last Updated: 17 Mar 2015 08:27 by Elena
Created by: Aleksander
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Hello,

We have a problem when publishing our appplication with Telerik.  After publishing the page that uses a RadGrid and any Skin (doesn't matter if it's Default or Black or Windows7) the Skin files do not load.  The Grid loads, it seems that the javascript files load (because the calendar works), but the css and the images that are part of the skins do not load and therefore the grid looks bare (attached partial screenshot).

When we publish the application, we do it through Maven (which takes the Telerik dlls from an Archiva repository, in our company we are required to publish using it).   When we don't use Maven/Archiva to publish then the page comes our fine and everything looks nice.  When we publish using Maven/Archiva, the skin files do not load on the page.  

So something is preventing the skins files (css and images) from loading correctly on the screen. 

The only thing we noticed is that when publishing using Maven/Archiva the DLL file attributes (Date modified and Date created) gets reset to current date time.

The dlls that we are using are:

Telerik.Web.UI.dll (ver 2013.3.1114.40)
Telerik.Web.UI.Skins.dll (ver 2013.3.1114.40)

We took the dlls after publishing using Maven/Archiva and compared them to the dlls that we downloaded from Telerik and the dlls are identical.  The only thing changed was the Date created/Date modified.  If that's the reason why the css/images don't load correctly, then it's a big problem for us.  Please look into this issue for us.

Thank you,
Alex
Declined
Last Updated: 29 Oct 2014 12:39 by ADMIN
ComboBox in native render mode does not add ID / NAME attributes to the select element.
Completed
Last Updated: 31 Jan 2014 09:47 by ADMIN
This issue manifests only when JavaScript is used to close the control (i.e., oWnd.close()) and the [x] button in the titlebar works as expected. Clicking the handles makes the popup element visible, but it is not responsive (i.e., buttons in its titlebar cannot be clicked, it cannot be dragged, etd.).
A workaround is to add the following OnClientClose handler:
function OnClientClose(oWnd, args) {
	//hide remaining resizing handles in Lightweight render mode
	if (oWnd.view && oWnd.view.resizable && oWnd.view.resizable.repaint)
		oWnd.view.resizable.repaint();
	//other logic
}

A fix will be available in the Q1 2014 release.