When the popup elements lack boundary detection e.g.: they don't take into consideration the proximity to the edge.
When binding the webpart through the designer an exception is thrown.
I am not having success on having wrap="false" for my RadGrid. The solution: (e.Column as GridBoundColumn).DataFormatString = "<nobr>{0}</nobr>"; Will not work since I have hover over and links on several of my columns. Couldn't RadGrid have a setting of wrap="false" that would apply to the entire grid?
Add functionality in the VSB to generate a dll file based on the created resources for custom skin.
The Telerik editor has a nice style builder/editor built in. It would be terrific if your ASP.NET tool set included a custom control that was a standalone style builder / editor. Our product includes web design tools and we need to give our customers the ability to customize the many styles used in the system. Ideally, it would be programmable, with many properties and methods so that we can customize it (for example, to remove options we don't want them modifying or to hide individual tabs that don't apply to the current style.) Also, it should support as much of CSS3 as possible (for example, curved corners on borders, that the current style sheet editor does not provide.)
See http://www.telerik.com/community/forums/aspnet-ajax/async-upload/null-exception-with-overridden-asyncuploadhandler.aspx
I have a RadToolbarDrorDown that allows users to select a different theme. This works fine in Firefox and Chrome, but the dropdown fails to show in IE (v10). It does appear to work with IE 9.0.8 however. In IE 10 I see this script error in the console: SCRIPT5007: Unable to get property 'documentElement' of undefined or null reference ScriptResource.axd, line 147 character 2 Also, the html generated is quite different : see attached Telerik version 2012.1.215.40
Add the ability to have scale breaks in the RadHtmlChart. Rejected with the comment: This feedback item is a duplicate of http://feedback.telerik.com/Project/108/Feedback/Details/55693
Hi, I have problem on RadComboBox display on ie 10, I'm using telerik RadMultiPage to display several page. one of page exists radcombobox . when I refreshing screen inside on radmultiPage display of radcombobox is okay, but when I using other control RadTabStrip to load page (wrap in rad ajax panel) into radmultipage , and radcombobox is broken. RadCombobox like truncated or display 80% , right side of rad combobox not displayed. But this is working fine on ie 9 and chrome. only on ie 10 radcombobox not displayed correct. I attached images to help this error. There is code in rad multi page <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server"> <telerik:RadComboBox ID="RadComboBox1" runat="server"> </telerik:RadComboBox> </telerik:RadAjaxPanel> whats wrong with ie 10, because working fine in ie 9 and chrome
(I didn't find RadNumericTextBox in the category) Telerik version - 2011.1.614.35 Auto complete box floats at a distant place, away from the RadNumericTextBox. i. The auto complete of IE 9 is on, enter some number, save the form. ii. Again open the form, focus on the numeric text box. The auto complete box seen is not aligned with the control.
It seems however that the problem comes from the unusual CSS style selector that you use to set the width of the RadTextBox controls. Based on the information of this help article, you should correct your CSS rule like this: Copy Code .three_column .RadInput { width: 448px !important; } Note the missing .riTextBox class from the selector. You should not apply width for the inner input element (which this selector controls), but only to the outer wrapping span element controlled by the .RadInput class. After applying this change on my side, the problem didn't reproduce any more. Yet another approach to fix the issue is to use the inline Width property. However, based on your code I suspect that you intent to change the width by CSS rules and that is why I would recommend the modification in the code block above.
Based on customer feedback --- A very simple setup: 1) Context menu target 2) Context menu shows on click 3) A certain zoom level In such case, if you tap some root menu item, another root menu item will highlight for a moment
Similar to the Sparklines in KendoUI - http://demos.kendoui.com/dataviz/sparklines/index.html
If the body tag of the content area of RadEditor has applied font-size with em and line-height attribute in Chrome, the contents of the produced ordered/undoreded lists will be wrapped in a span tag with this formatting. Steps to reproduce: 1) Put the following CSS on the page <style> body { font-size: 0.875em; line-height: 10.4px; } </style> 2) Load this content in RadEditor line1<br /> line2<br /> line3 3) Select the three lines in Design mode and press the InsertUnorederedList button. The produced content in Google Chrome will be <ul> <li><span style="font-size: 0.875em; line-height: 10.4px;">line1</span></li> <li><span style="font-size: 0.875em; line-height: 10.4px;">line2</span></li> <li><span style="font-size: 0.875em; line-height: 10.4px;">line3</span></li> </ul> instead of the expected one: <ul> <li>line1</li> <li>line2</li> <li>line3</li> </ul> Note: This is a WebKit browser behavior which can be reproduced by firing the browser's execCommand method with the InsertOrderedList command identifier: editor.get_document().execCommand("InsertOrderedList");
If I create a table and add some content to one of the cells, when I click on the content and click either the ordered or unordered list buttons, the <td> tag gets replaced the the <ul> or <ol> tag. I was able to replicate this on all browsers I tried using the demo at http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx