(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.
This property can be used for server-side validation.
This happens after the first postback. Initially it works correct, but after postback, if you select part of the entered text, and start typing, the caret begins to the begining, and the newly typed char goes at first position.