The sheet selector should hide sheets when their visibility is set to hidden or very hidden. The context menu of the sheet selector should contain Hide and Unhide options that allow to hide a sheet or unhide one of the hidden sheets.
This happens in the following scenarios: 1. The FilterMemberPath points to the Date property of a DateTime one. 2. The column name contains "[]" square brackets.
Telerik UI for WPF demo application can not be launched when there is no internet connection or access to Google Analytics is restricted by DNS.
In EventViewer you can observe the following error:
Description: The process was terminated due to an unhandled exception.
Exception Info: System.Net.Http.HttpRequestException: The requested name is valid, but no data of the requested type was found. (www.google-analytics.com:443)
private void RadTreeListView_Filtering(object sender, Telerik.Windows.Controls.GridView.GridViewFilteringEventArgs e)
{
var treeListView = sender as RadTreeListView;
var internalColumns = treeListView.GetType().GetProperty("InternalColumns", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).GetValue(treeListView);
internalColumns.GetType().GetProperty("ColumnWidthsCalculationPending", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(internalColumns, true);
}
private void RadTreeListView_Filtered(object sender, Telerik.Windows.Controls.GridView.GridViewFilteredEventArgs e)
{
Dispatcher.BeginInvoke(new Action(() =>
{
var treeListView = sender as RadTreeListView;
var internalColumns = treeListView.GetType().GetProperty("InternalColumns", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).GetValue(treeListView);
internalColumns.GetType().GetProperty("ColumnWidthsCalculationPending", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(internalColumns, false);
}), System.Windows.Threading.DispatcherPriority.Loaded);
}
A NullReferenceException can be thrown when quickly editing different cells with a RadMultiColumnComboBox (placed in the CellEditTemplate of the column) and changing the selection.
System.NullReferenceException HResult=0x80004003 Message=Object reference not set to an instance of an object. Source=Telerik.Windows.Controls.GridView StackTrace: at Telerik.Windows.Controls.MultiColumnComboBox.GridViewDropDownContentManager.OnMouseUp(Object sender, MouseButtonEventArgs args) in Telerik.Windows.Controls.MultiColumnComboBox\GridViewDropDownContentManager.cs:line 283
The System.Drawing.Common package is installed in the project that builds Telerik.Windows.Controls.Navigation.dll for .NET Core 3.1 Core, .NET 5 and .NET 6. The current package version is 4.7.0.
Update the package to the latest available version.
In this case, the MergeField Code value without the brackets gets concatenated before the display name of the MergeField in the document.
This reproduces after the document get exported and the DocxExportSettings' FieldResultMode property is set to FieldDisplayMode.DisplayName.
The MergeField is displayed correctly in RadRichTextBox. The issue occurs only when the document is displayed in MS Word.
To work this around, set the DocxExportSettings FieldResultMode value to null.
DocxFormatProvider docxFormatProvider = new DocxFormatProvider()
{
ExportSettings = new DocxExportSettings()
{
FieldResultMode = null
}
};
Hello,
During project implementation a wrong link connection was found.
Precondition:
When we have two models of ContainerNodeViewModelBase OuterModel and InnerModel.
InnerModel has set to true "RadDiagramShapeBase.UseGlidingConnector".
Steps to reproduce:
1. Put InnerModel inside OuterModel.
2. Connect the top middle connector to middle connector of InnerModel
3. When you move InnerModel in upper part of OuterModel the link is connected to bottom of InnerModel instead of to top.
To make reproduce easier i attach video, and i modified your sample application (PasteOnMousePosition) to reproduce this issue.
I attached both things.
Video desc:
1st use case with no gliding connector -- looks ok
2nd use-case movement outside of container and the link looks ok, but the link connection inside looks bad.
Currently this link is just a line, but when it would be an arrow then its looks even worse.
By default the drop down buttons (like RadRibbonDropDownButton and RadRibbonSplitButton are opening their drop down content on mouse enter, when hosted in ApplicationMenu. When a drop down of a button is opened and you hover another button, the currently opened drop down should get closed. But this doesn't happen when the ApplicationMenu is populated through its ItemsSource and the buttons are defined in the ItemTemplate.
To work this around avoid using ItemsSource and ItemTemplate. Instead add the buttons directly in the Items collection of ApplicationMenu.