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
Ticket # 541004
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>
Export to PDF functionality to RadTreeView
When RenderMode is set to LightWeight and ToolbarMode is RibbonBar, a JavaScript error is thrown.
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>
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?
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
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?
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.
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.