Completed
Last Updated: 28 Feb 2014 16:08 by ADMIN
Created by: Faten
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Trying to download the step by step tutorial from the following link fails:

http://www.telerik.com/support/aspnet-ajax#step-by-step

Thanks in advance,
Faten
Completed
Last Updated: 11 Nov 2014 14:47 by ADMIN
The issue appears when the user starts to type and the cursor is between BR elements. Тhe first typed character is out of the INS element instead its first one. The rest of the typed content is wrapped in SPAN and U elements.
Completed
Last Updated: 28 Apr 2015 15:21 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 14 Mar 2014 16:15 by ADMIN
When RadMenu is present on the page where a RadGrid has to be exported, a JavaScript error is thrown when the response is received. This is observable only in an iframe (or, therefore, a RadWindow).

Different ways to work around this are:

- remove the menu/context menu

- use a regular browser window instead of a RadWindow for this page

- use the ContentTemplate of the RadWindow instead of loading an entire page in it

- try adding the following function override at the end of the content page, just before the closing form tag:
			Telerik.Web.UI.RadMenu.prototype._onMouseOut = function (e)
			{
				var relatedTarget = e.rawEvent.relatedTarget ? e.rawEvent.relatedTarget : e.rawEvent.toElement;

				if (!relatedTarget && !this._isMainElementDescendant(e.target))
				{
					//The mouse is out of the window or the current frame - close the menu
					try
					{
						var that = this;
						setTimeout(
							function ()
							{
								that.close();
							}, this.get_collapseDelay());
					}
					catch (e)
					{
					
					}
				}
			}

If this does not help, try adding this one below:
$telerik.addHandler = function (element, eventName, handler, autoRemove) {
				if (!element._events)
					element._events = {};
			
				var eventCache = element._events[eventName];
				if (!eventCache)
					element._events[eventName] = eventCache = [];
			
				var browserHandler;
				if ($telerik.useAttachEvent(element)) {
					browserHandler = function() {
						var e = {};
						try {
							e = $telerik._getWindow(element).event
						}
						catch (ex) {
						}
						try {
							return handler.call(element, new Sys.UI.DomEvent(e));
						}
						catch (e) {
							
						}
					}
					element.attachEvent('on' + eventName, browserHandler);
				}
				else if (element.addEventListener) {
					browserHandler = function(e) {
						return handler.call(element, new Sys.UI.DomEvent(e));
					}
					element.addEventListener(eventName, browserHandler, false);
				}
			
				eventCache[eventCache.length] = { handler: handler, browserHandler: browserHandler, autoRemove: autoRemove };
				if (autoRemove) {
					var d = element.dispose;
					if (d !== $telerik._disposeHandlers) {
						element.dispose = $telerik._disposeHandlers;
						if (typeof(d) !== "undefined")
							element._chainDispose = d;
					}
				}
			}
Completed
Last Updated: 07 Jun 2016 13:19 by ADMIN
Created by: Winarsanti Laksmitarani
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Please update stylebuilder to match up with latest controls.. there is no skin generated yet for tilelist and lightbox. also last update Q3 2013 doesnt include default skin files in telerik's folder. where i could download base skin files of telerik?
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.