Dear team,
I've a problem with IsExpandedBinding on refreshing data. It's a user experience problem:
When I reload data the control first collapse all nodes and then it expands expanded nodes. This expand status change is very fast but visible and not very nice.
I don't know if TreeListView works like this, if is a problem of my code or if exist some way of avoid this behavior. I would find a way of refresh control after set the expand status of all nodes.
This is the header of my control:
<telerik:RadTreeListView
IsExpandedBinding="{Binding IsExpanded, Mode=TwoWay}"
AutoGenerateColumns="False"
IsDragDropEnabled="True"
IsReadOnly="False"
ItemsSource="{Binding PivotedItems}"
SelectedItem="{Binding CurrentPivotedItem, Mode=TwoWay}">
Thank you in advance!
Dear team,
I need to create an slider with multiple ranges. It means that I need a minimum of 4 thumbs and I don't know if this behavior is possible with RadSlider.
Telerik's slider webpage annouces that "Single or Multiple Thumbs Support". Multiple means 2? or more than 2?
Thanks in advance.

Hi. I write WPF MVVM Prism 6 modular application where I try to use RadTreeView. I add items to RadTreeView through ObservableCollection (to which RadTreeView is bound) using the "Add" method of the collection. I begin to add items to root item of the tree. After completion of code of adding of a child item to tree root item the "+" appears on the left of this root item. When I click on this "+" by the mouse it turns into "-" but added item is not visible in the RadTreeView. Below is the complete code of the class representing the type of element added (as child) to the tree root item:
public class Group : ProfileElementType, IEditableObject{ /// <summary> /// Device profile elements group structure. /// </summary> struct GroupData { /// <summary> /// Group name (for example, "RealtimeClock). /// </summary> internal string name; /// <summary> /// Brief description /// </summary> internal string description; /// <summary> /// Child elements collection. /// </summary> internal ObservableCollection<ProfileElementType> _childProfileElenents; } #region Fields /// <summary> /// Group data after their changing. /// </summary> private GroupData _newGroupData; /// <summary> /// Old data buffer. /// </summary> private GroupData _backupGroupData; /// <summary> /// Edit mode flag. /// </summary> private bool _isEditMode = false; #endregion #region Constructor /// <summary> /// Creates instance of Group. /// </summary> public Group() { this.ElementType = this.GetType(); this.ElementTypeName = this.ElementType.Name; this._newGroupData = new GroupData(); this._newGroupData.name = string.Empty; this._newGroupData.description = string.Empty; this.ChildProfileElenents = new ObservableCollection<ProfileElementType>(); } #endregion #region Properties /// <summary> /// Gets or sets group name. /// </summary> [Display(Description = "The name of the group."] public string Name { get { return this._newGroupData.name; } set { this._newGroupData.name = value; } } /// <summary> /// Brief description of the group. /// </summary> [Display(Description = "Brief description of group."] public string Description { get { return this._newGroupData.description; } set { this._newGroupData.description = value; } } /// <summary> /// Group child elements collection. /// </summary> [Browsable(false)] public ObservableCollection<ProfileElementType> ChildProfileElenents { get; set; } #endregion #region Methods /// <summary> /// String representation of instance of Group. /// </summary> /// <returns></returns> public override string ToString() { StringWriter stringWriter = new StringWriter(); stringWriter.Write(this.ElementTypeName); stringWriter.Write(": "); stringWriter.Write(this.Name); stringWriter.Write(" "); stringWriter.Write(this.Description); return stringWriter.ToString(); } #endregion #region IEditableObject implementation /// <summary> /// Begins to edit. /// </summary> public void BeginEdit() { if(!this._isEditMode) { this._backupGroupData = this._newGroupData; this._isEditMode = true; } } /// <summary> /// Cancels edit results. /// </summary> public void CancelEdit() { if (this._isEditMode) { this._newGroupData = this._backupGroupData; this._isEditMode = false; } } /// <summary> /// Accepts edit results. /// </summary> public void EndEdit() { if (this._isEditMode) { this._backupGroupData = new GroupData(); this._isEditMode = false; } } #endregion}Below isProfileElementType base class. It is base for both Gruop and Register classes.
public class ProfileElementType : IProfileElementType{ #region Fields /// <summary> /// Profile element type - Register or Group (група). /// </summary> private Type _elementType; /// <summary> /// Profile element type name - "Register" or "Group". /// </summary> private string _elementTypeName; #endregion #region Properties /// <summary> /// Gets or sets profile element type name string - "Register" or "Group". /// </summary> [Browsable(false)] public string ElementTypeName { get { return this._elementTypeName; } set { this._elementTypeName = value; } } #endregion #region IProfileElementType implementation /// <summary> /// Gets or sets profile element type - Register or Group. /// </summary> [Browsable(false)] public Type ElementType { get { return this._elementType; } set { this._elementType = value; } } #endregion }Below is definition of instance of group (root item element) in view model:
/// <summary>/// The tree root element. Its child elements collection is for organization of the device profile tree./// </summary>private Group _profileTreeRoot;public Group ProfileTreeRoot{ get { return this._profileTreeRoot; } set { this.SetProperty(ref this._profileTreeRoot, value); }}// This code in view model constructor:this.ProfileTreeRoot = new Group();In my application I have two classes of tree nodes: "Group" and "Register". I won't show Register class definition (because I'm experimenting with Group class now) but ItemStyleSelector class is below:
public class ItemStyleSelector : StyleSelector{ public override Style SelectStyle(object item, DependencyObject container) { if (item is Group) return this.GroupStyle; else if (item is Register) return this.RegisterStyle; return null; } public Style GroupStyle { get; set; } public Style RegisterStyle { get; set; }}Below is XAML of view in wich RadTreView is located (this XAML is shortened here in the post):
<Grid.Resources> <!--Profile elements group style--> <Style x:Key="GroupItemStyle" TargetType="telerik:RadTreeViewItem"> <Setter Property="Foreground" Value="Black" /> <Setter Property="FontStyle" Value="Normal" /> <Setter Property="FontWeight" Value="Normal"/> <Setter Property="DefaultImageSrc" Value="/Images/Group.png" /> <Style.Triggers> <Trigger Property="IsExpanded" Value="True"> <Trigger.Setters> <Setter Property="Foreground" Value="ForestGreen" /> <Setter Property="FontStyle" Value="Italic" /> <Setter Property="FontWeight" Value="SemiBold"/> </Trigger.Setters> </Trigger> </Style.Triggers> </Style> <!--Device register style (just in case only)--> <Style x:Key="RegisterItemStyle" TargetType="telerik:RadTreeViewItem"> <Setter Property="Foreground" Value="Black" /> <Setter Property="FontStyle" Value="Normal" /> <Setter Property="DefaultImageSrc" Value="/Images/File.png" /> </Style> <!--Profile elements group template--> <HierarchicalDataTemplate DataType="{x:Type model:Group}" ItemsSource="{Binding ChildProfileElenents}"> <TextBlock Text="{Binding Name}" /> </HierarchicalDataTemplate> <!--Register template (just in case only)--> <DataTemplate DataType="{x:Type model:Register}"> <TextBlock Text="{Binding Name}" /> </DataTemplate> <!--Style selector--> <local:ItemStyleSelector x:Key="ItemStyleSelector" GroupStyle="{StaticResource GroupItemStyle}" RegisterStyle="{StaticResource RegisterItemStyle}"/> </Grid.Resources><!--Below is RadTreeView markup itself:--><telerik:RadTreeView x:Name="DeviceProfileTree" Grid.Row="1" Grid.Column="0"> <telerik:RadTreeViewItem Header="{Binding RootHeader}" ItemContainerStyleSelector="{StaticResource ItemStyleSelector}" ItemsSource="{Binding ProfileTreeRoot.ChildProfileElenents}"/> <telerik:EventToCommandBehavior.EventBindings> <telerik:EventBinding Command="{Binding HandleProfileElementSelectionCommand}" EventName="Selected" PassEventArgsToCommand="True"/> </telerik:EventToCommandBehavior.EventBindings></telerik:RadTreeView>Below is RootHeader definition in the view model:
private string _rootHeader;public string RootHeader{ get { return this._rootHeader; } set { this.SetProperty(ref this._rootHeader, value); }}// This code in the view model constructor:this.RootHeader = "Flow Meter";Below is HandleProfileElementSelectionCommand command method (though here it does not matter as it seems to me):
private void handleProfileElementSelection(object parameter){ if (!this._isProfileElementSelected) this._isProfileElementSelected = true; RadRoutedEventArgs args = parameter as RadRoutedEventArgs; if ((args.Source as RadTreeViewItem).IsRootItem) this._isRootItemSelected = true; else { if (this._isRootItemSelected) this._isRootItemSelected = false; }}Below is command method for adding of new group:
private void addNewGroup(object parameter){ // If parent element was selected in the RadTreeView: if (this._isProfileElementSelected) { // Set property (to which RadPropertyGrid is bound in view) to new Group. this.ProfileElement = new Group(); this._isAddNewItem = true; }}Below is ProfileElement definition in the view model:
/// <summary>/// Device profile element. Can be as Group or as Register that are inherited from it./// </summary>private ProfileElementType _profileElement;public ProfileElementType ProfileElement{ get { return this._profileElement; } set { this.SetProperty(ref this._profileElement, value); }}Below is command method for saving added Group instance in the RadTreeView:
private void saveChanges(object parameter){ // If new profile element is added to the device profile tree. if(this._isAddNewItem) { // If this element is added as the child of the tree root element. if (this._isRootItemSelected) { if (this.ProfileElement.ElementTypeName == "Group") this.ProfileTreeRoot.ChildProfileElenents.Add(this.ProfileElement as Group); else this.ProfileTreeRoot.ChildProfileElenents.Add(this.ProfileElement as Register); } else { // Add to selected group inside root element (not implemented now) } this._isAddNewItem = false; } else { // Save changes for existed selected device profile element (not implemented now). }}As you can see adding to RadTreeView performs via ObservableCollection to which root node of RadTreeView is bound. Why added child element is not visible? Please help me to eliminate this error. In attach files there are solution structure (in Snapshot_10.png file), RadTreeView in collapsed status after adding the element (in Collapsed_Tree.png file) and RadTreeView in unwrapped status (in Unwrapped_Tree.png file). I hope for your help very much.

Hi,
I'm using *Telerik UI for WPF with C#*
I need to be able to sort the top node list of my RadTreeView alphabetically - that's it !
So the user clicks on the header row "Project" and it sorts ASC, click again and it toggles to DESC.
All the examples I've come across are for other Telerik platforms (web or winforms etc.).
My TreeView:
<telerik:RadTreeView x:Name="ProjectsTreeView" Grid.Row="1"
telerik:PersistenceManager.StorageId="THOR_ProjectTree"
ItemsSource="{Binding ProjectData}"
ItemTemplate="{StaticResource Project}"
BorderBrush="Gray"
ItemsIndent="0"
SelectionMode="Single"
SelectedItem="{Binding SelectedTreeViewItem, Mode=TwoWay}"
ItemContainerStyle="{StaticResource ItemContainerStyle}"
ItemClick="ProjetsTreeView_ItemClick"
BorderThickness="1"/>
Please advise (C#),
Barry

Hi,
I am having 5 RadGroup inside RadSplitContainer in my View and data binding is happening through using PRISM and MVVM.
When the RadGroup is getting pinned and unpinned, that particular RadGroup is moving to last in the sequence.
I don't want this behavior. I want the group show in the same sequence as it is declared in XAML.
Please suggest how I Can achieved this behavior.
--
Thanks & Regrads
Manoj
Hi Team,
Doing hard reboot of the machine (power off by holding the power button and then pwer on again) where our App is running.
Launching the app again after hard reboot is failing with following exception:
Initialization of 'Telerik.Windows.Controls.RadProgressBar' threw an exception.
Exception Source: PresentationFramework
Exception Message: Initialization of 'Telerik.Windows.Controls.RadProgressBar' threw an exception.
Exception StackTrace:
at System.Windows.Markup.WpfXamlLoader.Load(XamlReader xamlReader, IXamlObjectWriterFactory writerFactory, Boolean skipJournaledProperties, Object rootObject, XamlObjectWriterSettings settings, Uri baseUri)
at System.Windows.Markup.WpfXamlLoader.LoadBaml(XamlReader xamlReader, Boolean skipJournaledProperties, Object rootObject, XamlAccessLevel accessLevel, Uri baseUri)
at System.Windows.Markup.XamlReader.LoadBaml(Stream stream, ParserContext parserContext, Object parent, Boolean closeStream)
at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)
at DomainManagerGUI.DomainGUI..ctor()
at DomainManagerGUI.App.DoLogin(Boolean bIsRedundancyRelogin, Boolean bEvent)
Inner Exception:
----->>>>>
Exception Source: System.Configuration
Exception Message: Configuration system failed to initialize
Exception StackTrace:
at System.Configuration.ConfigurationManager.PrepareConfigSystem()
at System.Configuration.ConfigurationManager.get_AppSettings()
at Telerik.Windows.Controls.ThemeResourceKey.get_ApplicationTheme()
at Telerik.Windows.Controls.StyleManager.SetDefaultStyleKey(Control control, Type controlType)
at MS.Internal.Xaml.Runtime.ClrObjectRuntime.InitializationGuard(XamlType xamlType, Object obj, Boolean begin)
Inner Exception:
----->>>>>
Exception Source: System.Configuration
Exception Message: Root element is missing (C:\Users\Administrator\AppData\Local\Harmonic,_Inc.\Harmonic.GUI.DomainManage_StrongName_ixapsog5lcwreuscruvj3lgrgpth3ywq\1.0.0.0\user.config)
Exception StackTrace:
at System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(Boolean ignoreLocal)
at System.Configuration.BaseConfigurationRecord.ThrowIfParseErrors(ConfigurationSchemaErrors schemaErrors)
at System.Configuration.ClientConfigurationSystem.OnConfigRemoved(Object sender, InternalConfigEventArgs e)
Inner Exception:
----->>>>>
Exception Source: System.Xml
Exception Message: Root element is missing.
Exception StackTrace:
at System.Xml.XmlTextReaderImpl.ThrowWithoutLineInfo(String res)
at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
at System.Configuration.XmlUtil..ctor(Stream stream, String name, Boolean readToFirstElement, ConfigurationSchemaErrors schemaErrors)
at System.Configuration.BaseConfigurationRecord.InitConfigFromFile()
We replaced the config file and it worked.
But,
Could you please let us know, what could cause this issue, and how can we prevent this.
Thanks,
Piyush

Hello,
I have a program I am creating where the tileview represents a collection of computers, with one tile per computer. The data that backs this is bound as follows;
<telerik:RadTileView x:Name="radTileView" MaximizeMode="ZeroOrOne" ColumnWidth="250" ItemsSource="{Binding Data, Source={StaticResource context}}" ItemTemplate="{StaticResource ItemTemplate}" ContentTemplate="{StaticResource ContentTemplate}" IsVirtualizing="True" RowHeight="250" Grid.Column="2" Grid.Row="0" Margin="8,1,10,10" />In my ViewModel, Data is an observable collection, like this;
private ObservableCollection<ImagingData> _imagingData = new ObservableCollection<ImagingData>();public ObservableCollection<ImagingData> Data{ get { return _imagingData; } set { _imagingData = value; OnPropertyChanged(() => this.Data); }}Data is updated by a timer event that polls a database backend. If i simply update Data by replacing it, everything works fine, except it makes for a poor UI experience since the pane resets constantly. To make for a better experience, where tiles stay maximized, and stay where you put them, i implemented a sort of delta sync. When the timer event pops, I call UpdateData() with the UI dispatcher. UpdateData copies Data to an array, then adds new records, deletes records that are not in scope anymore, and updates fields on records that already exist. it is a crude proof of concept, but here it is;
private void UpdateData(ImagingData[] newItems, ImagingData[] existing){ //var dataArray = _imagingData.ToArray(); foreach (var item in existing) { var matchedItem = newItems.Where(c => c.ComputerName == item.ComputerName).FirstOrDefault(); if (matchedItem == null) Data.Remove(item); } foreach (var item in newItems) { var matchedItem = existing.Where(c => c.ComputerName == item.ComputerName).FirstOrDefault(); if(matchedItem == null) { Data.Add(item); return; } matchedItem.ImagingPasses = item.ImagingPasses; matchedItem.LastKnownActivity = item.LastKnownActivity; matchedItem.ImagingState = item.ImagingState; } OnPropertyChanged("Data");}The problem I am having that when i use this method, only 1 record is added to the Data collection each time the update timer fires, even though I have confirmed that the update loop does iterate over all the members. Visually, you see one tile appear, then the next, then the next, etc, separated by one timer iteration. I have tried all manner of different ways to remedy this but nothing seems to work.