Completed
Last Updated: 12 Jan 2016 16:13 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 25 Nov 2015 14:33 by ADMIN
ADMIN
Created by: Nencho
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
The styles related to multipage are too broad and affect all child iframes, not just the one from multipage.

The second iframe must not inherit any styles

<telerik:RadMultiPage runat="server" SelectedIndex="1">
    <telerik:RadPageView runat="server" ContentUrl="http://www.telerik.com" >
    </telerik:RadPageView>
    <telerik:RadPageView runat="server">
        <div>
            <iframe src="http://www.telerik.com" ></iframe>
        </div>
    </telerik:RadPageView>
</telerik:RadMultiPage>
Completed
Last Updated: 12 Dec 2015 09:08 by ADMIN
Using the web.config to enable lightweight or auto rendering for all controls, some of RadEditor dialogs (most of them are the Lite Dialogs) have visual issues and are impossible to be used. 
Completed
Last Updated: 15 Feb 2016 15:43 by ADMIN
Completed
Last Updated: 26 Nov 2015 09:15 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 21 Dec 2015 13:17 by ADMIN
Completed
Last Updated: 30 Dec 2015 15:22 by ADMIN
When the form element is offset, RadAutoCompleteBox popup is not properly positioned unlike the Combo / Dropdown counterparts.

Since we append all popups in the FORM element, the issue is only exhibited if FORM is not top level element, but is instead nested. The most obvious case is when you have Bootstrap structured page: .container > .row > .column.offset-3 > *form* > radautocompletebox.
Completed
Last Updated: 12 Jan 2016 12:14 by ADMIN
For the time being you can use the following workaround:
CSS:
	<style>
		html span.RadButton_MetroTouch.rbToggleButton .rbText,
		html span.RadButton_BlackMetroTouch.rbToggleButton .rbText {
			padding: 0 25px;
		}
	</style>
ASPX:
			<telerik:RadButton ID="telerik:RadButton 1" runat="server" ToggleType="CheckBox" ButtonType="ToggleButton" Skin="MetroTouch"
				Text="Click">
			</telerik:RadButton>
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