There is a black line that has appeared in my RadMenu. The problem can be solved by adding a display: none in the following class: .RadMenu .rmGroup:before, .RadMenu .rmMultiColumn:before, .RadMenu .rmScrollWrap>.rmHorizontal:before, .RadMenu .rmScrollWrap>.rmVertical:before
Load in IE this demo: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx Enter in HTML mode - <p><a href="stm:b4f0c9ac-9a08-4c9f-8caf-39ccd4a83fc9" class="stm" contenteditable="false">Statement 111</a></p> Switch to Design mode Search for Statement with the Find and Replace dialog The dialog won't be able to locate and highlight the link
The correct format should be ISO 8601: ([CreateDate] >= '2013-06-22T00.00.00') AND ([CreateDate] <= '2013-06-22T23.59.59' Workaround: https://www.telerik.com/support/kb/aspnet-ajax/grid/details/get-sql-compliant-filterexpressions-from-radgrid
The issue can be workarounded by calling preventDefault of the mousedown event when ComboBox item is clicked: <telerik:RadScriptManager runat="server" /> <script> var onDocumentClick = Telerik.Web.UI.RadComboBox.prototype._onDocumentClick; Telerik.Web.UI.RadComboBox.prototype._onDocumentClick = function (e) { if (!e) e = event; var target = e.target || e.srcElement; while (target.nodeType !== 9) { if (!target.parentNode || target == this.get_element() || target == this.get_dropDownElement()) { e.preventDefault(); return; } target = target.parentNode; } onDocumentClick.call(this, e); }; </script> <telerik:RadComboBox ID="RadComboBox1" runat="server" RenderMode="Lightweight" OnClientBlur="OnClientBlur" CheckBoxes="true"> <Items> <telerik:RadComboBoxItem Text="Item1" Value="1" /> <telerik:RadComboBoxItem Text="Item2" Value="2" /> <telerik:RadComboBoxItem Text="Item3" Value="3" /> <telerik:RadComboBoxItem Text="Item4" Value="4" /> </Items> </telerik:RadComboBox> <script> function OnClientBlur(sender, args) { console.log("Blur event"); } </script>
Using the RadEditor with Auto or Mobile mode in a RadWindow is impossible because JS error are thrown when dialog is shown. For the time being, the most proper solution for this case is using the Lightweight mode for RadEditor.
The dragging clue element is shown before the actual dragging of the element in the Grid is initiated (immediately after the item is clicked). The problem is reproducible in Chrome. Comment: The problem is not reproducible in the following TreeView demo: http://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/draganddropnodes/defaultcs.aspx Steps to reproduce: 1. Open http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/drag-and-drop/defaultcs.aspx 2. Click over an item (just mouse-down, without moving the mouse nor full click) Result: The dragging clue is shown without actual moving of the mouse pointer
The issue is caused by a bug in the KB3057839 windows update. The bug has been reported to Microsoft and can be tracked at the following link: https://connect.microsoft.com/VisualStudio/feedback/details/1475291 Currently the only workaround is to revert the KB3057839 update on the production server.
The grid adds the correct Aria-Selected attribute, but JAWS does not work
A sample project for reproducing the issue is attached: Each of the pages in the ContentUrl properties has an alert("PageName") displayed at pageLoad. 1, Brows the Default.aspx - an alert - page1 occurs 2. Select Level 2 tab, which would load the subTab - Page4 and the "page4" alert should be shown. Problem : In addition to the "page4" alert - the "page5" alert is raised and the page5.aspx had been loaded along with page4.aspx. ---------------------------------- Workaround: To workaround this issue, set the PageViewID property of the parent tab to be with the same value as the PageViewID property on the selected child tab. <telerik:RadTabStrip runat="server" ID="RadTabStrip1" MultiPageID="rmpPages" Width="100%"> <Tabs> <telerik:RadTab Text="Level 1" Selected="true" PageViewID="page1"> <Tabs> <telerik:RadTab Text="Page 1" PageViewID="page1" Selected="true" /> <telerik:RadTab Text="Page 2" PageViewID="page2" /> <telerik:RadTab Text="Page 3" PageViewID="page3" /> </Tabs> </telerik:RadTab> <telerik:RadTab Text="Level 2" PageViewID="page4"> <Tabs> <telerik:RadTab Text="Page 4" PageViewID="page4" Selected="true" /> <telerik:RadTab Text="Page 5" PageViewID="page5" /> <telerik:RadTab Text="Page 6" PageViewID="page6" /> </Tabs> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage runat="server" ID="rmpPages"> <telerik:RadPageView runat="server" ID="page1" ContentUrl="page1.aspx" Selected="true" /> <telerik:RadPageView runat="server" ID="page2" ContentUrl="page2.aspx" /> <telerik:RadPageView runat="server" ID="page3" ContentUrl="page3.aspx" /> <telerik:RadPageView runat="server" ID="page4" ContentUrl="page4.aspx" /> <telerik:RadPageView runat="server" ID="page5" ContentUrl="page5.aspx" /> <telerik:RadPageView runat="server" ID="page6" ContentUrl="page6.aspx" /> </telerik:RadMultiPage>
The long code lines in the QSF code viewer are very hard to read as the only way to get the horizontal scroll-bar is to reach the bottom of the page.