Completed
Last Updated: 24 Apr 2014 08:08 by ADMIN
Created by: Caleb Sandfort
Comments: 6
Category: UI for ASP.NET AJAX
Type: Feature Request
1
After the last release when looking at the roadmap for the Q1 2014 release there was mention of a diagramming control.  Now when I look at the roadmap it is not there.  What's going on with the diagramming control?
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>
Declined
Last Updated: 09 Apr 2014 11:20 by ADMIN
Created by: Germain
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 26 Mar 2014 17:20 by Moritz
ADMIN
Created by: Misho
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
1
The markup intellisense doesn't work in VS 2008 with Q1 2014.
Completed
Last Updated: 26 Mar 2014 15:10 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 26 Mar 2014 14:23 by ADMIN
Unplanned
Last Updated: 19 Mar 2014 16:31 by ADMIN
Declined
Last Updated: 19 Mar 2014 12:05 by ADMIN
Created by: Jeremy Schaab
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
We would love a couple of Lightswitch HTML controls.  Not expecting the full stack.  

Even if you could just help us understand how to integrate Kendo UI more easily that would help too.  It's a great framework or building fast lightweight apps, but the UI portion is missing many controls and documentation from Telerik, if the controls do integrate.  

ComponentOne seems to have a good handle on it, but we prefer Telerik if we can use it.
Declined
Last Updated: 19 Mar 2014 10:47 by ADMIN
Created by: Todd Bannar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
None of the demos are displaying correctly.  Take a look at: http://demos.telerik.com/aspnet-ajax/orgchart/examples/overview/defaultcs.aspx.  It appears that the stylesheet might be missing.
Declined
Last Updated: 19 Mar 2014 10:46 by ADMIN
Created by: David
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
There is an on your live demo

http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/detailitemtemplate/defaultcs.aspx
Declined
Last Updated: 19 Mar 2014 10:45 by ADMIN
sso
Created by: Anthony Mangini
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
sso
Has telerik ever thought of writing an SSO class or control that would allow someone to add the functionality to sign on to their website using sso and SAML 2.0 for secure login?
Completed
Last Updated: 19 Mar 2014 10:34 by Elena
Declined
Last Updated: 19 Mar 2014 09:56 by ADMIN
Created by: Hossein
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
2
I think Telerik missing and OCR control to be complete set. We used Telerik for our web development and recently there was a project that we need to OCR the uploaded document. We would like telerik to be one stop shop for development tools and don't go around to find complimentary controls for OCR. So my suggestion is to add OCR control(s) 

Regards,
Hossein
Declined
Last Updated: 19 Mar 2014 09:51 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
7

			
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;
					}
				}
			}
Declined
Last Updated: 14 Mar 2014 08:50 by ADMIN
Completed
Last Updated: 12 Mar 2014 16:30 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 11 Mar 2014 17:04 by Bruce
Created by: Bruce
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
3
Instead of pages like this, which exist for every control and aren't very helpful:
http://www.telerik.com/help/aspnet-ajax/scheduler-appearance-skins.html

I think the skins page should actually render the control and allow developers/designers to select a skin from a drop down to properly demonstrate how the control appears in that skin. 

The logic behind this is somewhat similar to the property explorer pages. As with the property explorer pages, the RenderMode should also be selectable from the proposed skin page because it affects the way the skin is rendered. 

Without this feature I find myself starting a test page, typing in a skin name, save changes, load page, new skin name... repeat, repeat. Please add this feature to make this process a whole lot easier.