CheckBox enters the incorrect state on press and hold in VisualStudio2013 theme. Once it's checked, the check mark disappears on press and hold. Available in LIB version 2016.2.525, it will be also available in the 2016 R2 SP1 release.
I love the amount of flexibility provided by the palette-based themes and was surprised that we could easily tune the colors but had no control over the opacity level used in the disabled state. We have customers complaining that it's too faint (compare with MS label in attached screenshot) and it would be great if we could address this as easily as the rest of the theme colors. Reason for declination: The XAML team has reviewed this feature request and we are closing it because it is already logged in our feedback portal: http://feedback.telerik.com/Project/143/Feedback/Details/139310-make-the-disabledopacity-a-dynamic-resource You can vote for it and follow it to track its progress. Any additional information or requirements will be highly appreciated. You can add them to the item or contact us through the support ticketing system with details.
When the UI culture changes, the DataMemberBinding is updated for all columns (I'm wondering why?). See \Controls\GridView\GridView\GridView\GridViewDataControl.cs: private void UpdateCultureInfoIfNeeded() { if (this.cultureInfo != null && (this.cultureInfo.Name.ToUpper(this.cultureInfo) != this.Language.IetfLanguageTag.ToUpper(this.cultureInfo))) { this.InitializeCultureInfo(); foreach (var column in this.Columns.OfType<GridViewBoundColumnBase>()) { Binding oldBinding = column.DataMemberBinding.CloneBinding(column.ValidatesOnDataErrors); column.DataMemberBinding = oldBinding; } } } However, if the DataMemberBinding was null, the CloneBinding creates a new binding with empty path instead of returning null again - but this never makes sense for the DataMemberBinding on a column (crashes the application as soon as the Binding is applied to the cells). Background: I have created a column where the cell value is not bound but dynamically calculated - so the DataMemberBinding is null.
Available in LIB version 2015.3.1019, it will be also available in the 2015 Q3 SP1.
When a source RadFixedDocument is merged to a target RadFixedDocument, the content of the source document is cleared. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190079 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190082 Please use the new item for commenting, voting and subscribing instead of this one.
Workaround: private static void WorkaroundFieldsIssue(RadFlowDocument flowdocument) { foreach (FieldCharacter fieldCharacter in flowdocument.EnumerateChildrenOfType<FieldCharacter>().ToList()) { // only for start if (fieldCharacter.FieldCharacterType == FieldCharacterType.Start) { if (fieldCharacter.FieldInfo.Separator != null && fieldCharacter.FieldInfo.Separator.Parent == null) { Paragraph parent = fieldCharacter.FieldInfo.End.Paragraph; int index = parent.Inlines.IndexOf(fieldCharacter.FieldInfo.End); fieldCharacter.FieldInfo.End.Paragraph.Inlines.Insert(index, fieldCharacter.FieldInfo.Separator); } } } } This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190083 Please use the new item for commenting, voting and subscribing instead of this one.
Is there any way to easily see the comprehensive differences between two versions? We have an application that is still on version 2012.1.326 that we are intending to upgrade to the latest, but there is no simple way to tell what breaking changes might have been made. Our customer is asking us what features may no longer work as expected, but it would be practically impossible to go through every single set of release notes because there are so many between now and then. A simple replacement to "see what happens" isn't really feasible either because the application is so large and some of it was written by a third party. --------------------------------------- We’ve introduced the Telerik API Analyzer tool that helps determine the problematic areas when upgrading a WPF, WinForms or ASP.NET Web-Forms application to a newer version of our controls. You can read more about the tool in this blog post: http://www.telerik.com/blogs/api-analyzer-helps-upgrading-telerik-projects.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190086 Please use the new item for commenting, voting and subscribing instead of this one.
The feature will be available in our official release Q1 2016.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190089 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190091 Please use the new item for commenting, voting and subscribing instead of this one.
The fix will be available in our next LIB release (v. 2016.01.125).
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190094 Please use the new item for commenting, voting and subscribing instead of this one.
The AltChunk element is responsible for embedding external content into documents. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190095 Please use the new item for commenting, voting and subscribing instead of this one.
Fixed in LIB Version 2015.3.1130. Note that the MinimizeButtonStyle used in the OutlookBar control is now renamed to OutlookBarMinimizeButtonStyle.
Will be available in Q1 2016 Release.
The font size in the table does not respect the CSS for the corresponding class. There is similar issue with <li /> element. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190102 Please use the new item for commenting, voting and subscribing instead of this one.
'thead' HTML element represents table row that should be repeated at the top of each page. MS Word maps this to TableRow with RepeatOnEveryPage set to true. This works for both export and import. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190104 Please use the new item for commenting, voting and subscribing instead of this one.