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
Allow the users to create their own attributes and to be able to work with their client representation after that.
combobox is not working in Android mobile Chrome browser. Try selecting Payment method on telerik demo at http://demos.telerik.com/aspnet-ajax/combobox/examples/overview/defaultcs.aspx
Other skins or browsers are working fine. (Didn't test other IE Versions) Bug appears also at the Demo site http://demos.telerik.com/aspnet-ajax/dropdownlist/examples/functionality/templates/defaultcs.aspx
The behavior is observable in the demos on Telerik's site. I am using ie10 with ie7 document mode.
When large zip files with a lot of files inside is uploaded, the httphandler throws an System.OverflowException "Value was either too large or too small for an Int32." This only happens in HTML 5 File API mode.