For the time being you can use the following workaround: CSS: <style> .RadForm_Bootstrap.RadForm.rfdButton form a.rfdSkinnedButton { padding: 0px; height: 32px; } .RadForm_Bootstrap.RadForm.rfdButton form a.rfdSkinnedButton input.rfdDecorated { height: 32px; } </style> ASPX: <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Bootstrap" ShowChooser="true"></telerik:RadSkinManager> <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" /> <asp:Button ID="Button1" Text="Click" runat="server" />
I am doing a bin deployment on a web site for the following assemblies... Telerik.Windows.Documents.Core Telerik.Windows.Zip Telerik.Windows.Documents.Fixed Telerik.Windows.Documents.Flow Telerik.Windows.Documents.Flow.FormatProviders.Pdf Telerik.Windows.Documents.Spreadsheet Telerik.Windows.Maths Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf I recently used the upgrade wizard, and it successfully updated the versions for these assemblies, but it did not update the version numbers in the Web.config. I manually removed the version number completely from Web.config, and it seems to work fine.
For all controls that have a dropdown, there should be a DropDownSettings part. Namely, it should control: width, height as well as their min / max counterparts and css class. Perhaps z-index
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.
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.
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())); } } }
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
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.
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>
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.
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>