Declined
Last Updated: 12 Mar 2015 09:56 by ADMIN
Declined
Last Updated: 11 Mar 2015 08:12 by ADMIN
Created by: RajaSekhar
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Is this easy thing to integrate BootStrap with Telerik controls...can you please explain.. is it possible to change the telerik skin with bootstrap skin
Completed
Last Updated: 09 Mar 2015 07:03 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 09 Mar 2015 06:28 by ADMIN
ADMIN
Created by: Daniel
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
4
Ticket # 541004
Completed
Last Updated: 09 Mar 2015 06:25 by ADMIN
Completed
Last Updated: 24 Feb 2015 17:02 by ADMIN
The shortcut TAB key provides correct behavior only for IE (  entities are added). UNder Firefox and Chrome the behavior is incorrect and not expected.

In FF - nothing is added to the content, moves the focus to the next HTML element.

In Chrome - a SPAN element is inserted.

A possible resolutions replacing the added shortcut for TAB key with the InsertTab command:

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

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		var shortcutManager = editor.get_shortCutManager();

		if (shortcutManager.findShortCutByName("InsertTabMozilla")) {
			shortcutManager.removeShortCut("InsertTabMozilla");
			editor.addShortCut("InsertTab", "TAB");
		}
	}
</script>

Completed
Last Updated: 18 Feb 2015 09:30 by ADMIN
Completed
Last Updated: 16 Feb 2015 15:29 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Declined
Last Updated: 11 Feb 2015 08:12 by ADMIN
Completed
Last Updated: 04 Feb 2015 19:07 by ADMIN
ADMIN
Created by: Simon
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
8

			
Completed
Last Updated: 04 Feb 2015 18:32 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
5
Export to PDF  functionality to RadTreeView
Completed
Last Updated: 29 Jan 2015 12:19 by truecare
Completed
Last Updated: 27 Jan 2015 15:26 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
When RenderMode is set to LightWeight and ToolbarMode is RibbonBar, a JavaScript error is thrown.
Completed
Last Updated: 27 Jan 2015 15:20 by ADMIN
When the editor is loaded with a full HTML page editable document, which contains nested tables with images inside, selecting an image causes the Chrome browser to break. 

Possible workaround is disabling the resize widget of the tables and images in Chrome by incorporating this sample code:

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

<script type="text/javascript">
    Telerik.Web.UI.RadEditor.prototype._initializeResizableWidget =
        function myfunction() { };
</script>
Declined
Last Updated: 22 Jan 2015 12:04 by Pankaj
Created by: Pankaj
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
currently migrating from SharePoint 2010 to Sharepoint 2013 facing issues as Radgrid control 2010.3.1109.35 not working

do we required to download new dll for sharepoint 2013?
does telerik radgrid support 4.5 framework?
Declined
Last Updated: 21 Jan 2015 11:44 by ADMIN
Created by: Christopher
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Regarding: Client-side Binding, Programmatic Binding

Attempted to perform Client-side Binding to reduce sort and filtering network traffic, using this example http://demos.telerik.com/aspnet-ajax/grid/examples/client/databinding/defaultcs.aspx#qsf-demo-source as the basis of my work.

I could not get the server-side public static GetData method to get invoked (and stop on a source code break-point), regardless what I tried.

However, I would get a runtime error immediately if I comment out the GetData method entirely.

The example code on the Telerik website cannot be downloaded and relies on a SQL Server database (cannot find a way of examining working code -- e.g. hardcoded values that are returned from GetData static WebMethod).

Would really like to get client-side data-binding working, but am unsure how to proceed.

NOTE: I also tried enabling DataBinding > EnableCaching, but break-point on NeedDataSource still got hit when gridview data was sorted or filtered (and I want sorting and filtering to occur client-side).

RadGrid version 2013.1.220.40
Declined
Last Updated: 21 Jan 2015 11:25 by ADMIN
Created by: Naveen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When i try to perform filter, browser shows Server time out or at some times it will work after 5 mins. I have almost 25k records in the grid. Selection is working fine. Can any one help?
Declined
Last Updated: 21 Jan 2015 11:24 by ADMIN
Created by: Olias Becker
Comments: 3
Category: UI for ASP.NET AJAX
Type: Bug Report
1
When binding a RadGrid (client-side) containing a GridTemplateColumn as described in various Telerik posts, binding for that column seems to work for the first few rows, then seems to stop producing the markup for the asp:Label within the ItemTemplate. Therefore, the remaining items in the grid are empty for that column. 

I have isolated the issue in the attached test files and provided a screenshot of the result.
Declined
Last Updated: 21 Jan 2015 09:53 by ADMIN
Created by: 신철
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
My ASP.NET project updated 2013 Q1.

Not bad. but I found some error.

RadGrid's clientSettings element of AllowScroll = 'true' if the layout is broken.

The reason for the scroll function will render the data area is divided into a new DIV.

HEADER column portion and a data portion, while the size of the column is divided 

into different DIV does not fit.

Attach the file. Look the screenshot.