Completed
Last Updated: 26 May 2016 11:52 by Mbott
There  is a JS error thrown in IE8 when the SlidingPanes are loaded. The error message is "Invalid procedure call or argument".
Unplanned
Last Updated: 14 Jun 2021 09:57 by ADMIN
Created by: David
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
The functionality for strongly typed model-bound controls provides a significant boost in re-usability and ease of development. The documentation and support for this feature is, for all intents and purposes, non-existent.

Please provide demo applications for each data-control capable of model binding with full code showing how the make the feature work.

Capabilities should include common usages such as placing a drop-down list into a radgrid row, CRUD, filtering, and data-annotation and validation.
Completed
Last Updated: 21 Oct 2015 15:38 by ADMIN
Declined
Last Updated: 01 Jun 2016 15:53 by ADMIN
Performance and decreasing the footprint of JavaScript/CSS size of pages is very important for major websites. You all clearly know that as it was one of your goals with Lightweight rendering.

We would like documentation that shows the approximate file sizes for the Javascript and CSS files per control. We would also like to know the base libraries:

AnimationFramework.js - KB?
PopupScripts.js - KB?
TouchScrollExtender.js - KB?
ScrollingScripts.js
OData.js (why does this load if we aren't using OData?)
OverlayScript.js
NavigationScripts.js
etc

We would like more control over the loading of these and knowing what functionality dictates what scripts.

This would really help us evaluate whether to use a control or look for a lighter jQuery alternative as we are very concerned with file sizes and the loading time of our web pages.
Completed
Last Updated: 24 Nov 2015 11:31 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
Completed
Last Updated: 19 Oct 2015 11:21 by ADMIN
Created by: VnDevil
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Hi Telerik,

I've seen your new Theme Builder at http://themebuilder.telerik.com
This is wonderful tool for all developer and I love it.
So I have a feedback, can you create a Forum for everybody where we can share our Theme Builder in ASP.NET Ajax forum like Visual Style Builder forum's already exists.
And a library where the best Theme Builder was pulic by others developer.

I think this is good wat for the development of community Telerik

Thanks
Completed
Last Updated: 03 Dec 2015 16:13 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Using this method to programmatically select the content area does not work as expected in Edge browser.

Possible workaround is to use ContentAreaMode="Div". Or using editor.get_contentArea().focus() method instead of editor.setFocus() (This might not work for some legacy browsers).
Completed
Last Updated: 15 Oct 2015 09:00 by ADMIN
Resize the window in order to activate the screen boundary detection. Expand the first and the second root nodes then scroll to the bottom and expand the last root node. Notice that the drop down is scrolled to the top.



  <telerik:RadDropDownTree runat="server"ID="RadDropDownTree1" >
    </telerik:RadDropDownTree>

    protected void Page_Load(object sender, EventArgs e)
    {
        var tree = RadDropDownTree1.EmbeddedTree;

        for (int i = 0; i < 10; i++)
        {

            tree.Nodes.Add(new RadTreeNode("Roo t" + i.ToString()));
            for (int j = 0; j < 10; j++)
            {
                tree.Nodes[i].Nodes.Add(new RadTreeNode("Sub" + i.ToString() + " " + j.ToString()));
            }

        }
    }
Completed
Last Updated: 17 Dec 2015 08:25 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 19 Oct 2015 08:04 by ADMIN
Completed
Last Updated: 08 Oct 2015 12:41 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
In the meantime, use the following workaround:

<script type="text/javascript">
                var designMode = Telerik.Web.UI.EditModes.Design;
                var editorPrototype = Telerik.Web.UI.RadEditor.prototype;
                var keypress = editorPrototype._keyPressHandler;
                editorPrototype._keyPressHandler = function (ev) {
                    if (this.get_mode() == designMode) {
                        keypress.call(this, ev);
                    }
                }
                var keyDownOverride = editorPrototype._keyDownHandlerEnableTrackChangesOverride;
                editorPrototype._keyDownHandlerEnableTrackChangesOverride = function (ev) {
                    if (this.get_mode() == designMode) {
                        keyDownOverride.call(this, ev);
                    }
                }
                var keydown = editorPrototype._keyDownHandler;
                editorPrototype._keyDownHandler = function (ev) {
                    if (this.get_mode() == designMode) {
                        keydown.call(this, ev);
                    }
                }
            </script>
Declined
Last Updated: 28 Mar 2019 10:45 by ADMIN
Created by: Oliver
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
4

			
Won't Fix
Last Updated: 29 Sep 2015 11:51 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 29 Sep 2015 07:02 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Using the RadEditor with Auto or Mobile mode in a RadWindow is impossible because JS error are thrown when dialog is shown. 

For the time being, the most proper solution for this case is using the Lightweight mode for RadEditor.
Completed
Last Updated: 14 Jun 2021 15:52 by ADMIN
Created by: Art Handy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
I would like to see a new control, a Submit button, that when added to a web form would act not only as a Submit button but also have the functionality to provide a warning message with options when the user attempts to exit a form on which changes have been made yet not saved, activated by the windows beforeunload event.

When adding the new Submit button to a form options/properties would be available to the developer to select all or specific controls on the form to check for changes. The developer would also have the option of providing the warning message to be displayed as well as being able to title the buttons of the warning message as appropriate, i.e. "Leave without Saving Changes", "Stay on Page and Save Changes".

If the user presses this "Submit" button all the "data changed" flags would be cleared and the beforeunload event will be cleared allowing for redirection or further processing.

Since we as developers want to provide the best possible experience for our web users, this type of control would be invaluable in making the user experience easier and less frustrating. In addition it would save many hours of coding by encapsulating this type functionality in a single control that can be inserted in place of the standard Submit button making it easier and more convenient for a developer to provide professional data forms to users tailored to the specific type of data gathering that the form is being designed for.

I know that there are many jquery/javascript functions that perform similar functionality, but it would be so much more convenient if a Telerik control existed that would perform these functions.
Completed
Last Updated: 07 Oct 2015 13:27 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
For the time being you can manually set the localization string for the "Add Custom Color" and "Current Color" buttons: 
		<telerik:RadEditor ID="RadEditor1" runat="server" RenderMode="Mobile" Language="de-DE" LocalizationPath="~/App_GlobalResources"></telerik:RadEditor>
		<script>
			var initialize = Telerik.Web.UI.Editor.MobileColorPicker.prototype.initialize;
			var addCustomColorTextLocalized = "Add Custom Color Localized";
			var currentColorTextLocalized = "Current Color Localized";

			Telerik.Web.UI.Editor.MobileColorPicker.prototype.initialize = function () {
				var colorPicker = this;
				initialize.call(colorPicker);
				
				colorPicker._addCustomColorText = addCustomColorTextLocalized;
				colorPicker._currentColorText = currentColorTextLocalized;
			}
		</script>
Declined
Last Updated: 30 Oct 2015 15:09 by ADMIN
Created by: Bheem
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
We are currently using v2010 of telerik.web.ui dll in our production environments and planning to move to 2015 very soon. Upon updating in our staging environments we are seeing a massive difference in dll size between the 2 versions. Also the webresource.axd(javascript) in the new version is 1.14MB in size which may cause some performance issues. My question is:

1. Is there a way to reduce this size or do per-need basis loading?
2. Can we refer telerik js files in our master page so that they are not loaded all the time? If so, please let us know how.
Declined
Last Updated: 24 Sep 2015 12:42 by ADMIN
ADMIN
Created by: Joana
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
http://demos.telerik.com/aspnet-ajax/editor/mobile-examples/overview/default.aspx

Error: Uncaught TypeError: Cannot read property 'Polling' of undefined