Steps to reproduce: 1) Create a vertical RadMenu with one item only 2) Hover the item Result: slight displacement
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.
Column width can be manually set via ExportInfrastructure.Column.Width, however, the width cannot be set to be based on the width of the column's cells' content. An auto-size property on the columns would be very useful for properly formatting the Excel file.
If an image occurs after some text and it is floated, then in Chrome the image properties dialog will have empty field values and no updates can be made to the image. Use the HTML below on the demo page and the issue can be seen. http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx Sample content This is some text<img alt="" style="float: right;" src="/aspnet-ajax/Editor/Img/UserDir/Marketing/telerik_125x125_asp.gif" />
When you use the scheduler to manage items other than appointments, it'll be nice to have drill down capability. Ie show project and all it's tasks as child.
Just like the silverlight version does.
radcombobox with AutoPostBack = true; Filter = RadComboBoxFilter.None; MarkFirstMatch = false; EnableLoadOnDemand = false; AllowCustomText = true; we type a text like "123" and we hit ENTER all works fine: server side event SelectedIndexChanged is fired and Text property has correct value of "123" we type the text "00000" and we hit enter: - no server side event is fired (we are expecting SelectedIndexChanged to be fired) - on the client side now the combo shows up "123" (we've entered "00000") we type the text "4560000" and we hit ENTER: - a server side event is fired (SelectedIndexChanged) but the Text property has value of "456" seems that the character '0' is ignored from the final part of the entered text. attached is the solution (VS2010) with an example to reproduce the bug. we hope to find soon a solution to this (this bug happens with the latest version: UI for ASP.NET AJAX Q3 2012\Bin40).
When we create a link to an external web site such as www.cnn.com using the RadEditor (6.3.0.0) on our SP2010 farm we are getting an error that says this: "cannot find this location in the current site location" "the URL may refer to an external web site for to a location in the site collection that does not exist or you do not have the right to access" When I bring up a browser on the SharePoint server themselves I can access those sites.
This property can be used for server-side validation.
This diagramming tool can provide a toolbox with different models that can be dragged onto the canvas, edited, resized, rotated, etc. Additionally a hierarchical model can be implemented that link different models on the diagram.
Please provide a web control that would simulate windows 8 tiles: dragging, live-ness, etc..
Visual style builder is not working properly in google chrome, doesnt reflect the changes that I m doing to create the style.
Brief Description of Issue: If you try to put HTML comments into the HTML view of an HTML module using the default rich text editor you will find that the comments are visible when you save the content. Clear Steps to Reproduce: Install DotNetNuke 7.0.2 Login with admin/host Edit an HTML module Switch to the HTML view of the editor put <!--Test--> Save View the page and you will see <!--Test--> Expected Result: The comment should be just that, a COMMENT, not visible to the browser unless you were viewing the source of the page.
The focused date for the calendar is not applied initially when setting it via code behind.
If I do this via code behind:
theControl.Calendar.RangeMinDate = new DateTime(2012, 1, 1);
theControl.Calendar.RangeMaxDate = new DateTime(2012, 12, 31);
theControl.Calendar.FocusedDate = new DateTime(2012, 1, 2);
When clicking on the button to select a date, I get a "Date is out of range" message box. but then it still allows me to pick a date.
The only workaround I have been able to use right now is to set the Focused date in the markup. This will allow the selection without the popup.