I'm using the commands in the RadWizardCommands class as described Commands page of the documentation for the RadWizard. I'll start by noting that everything works in the application ​at runtime; however, at design-time Visual Studio 2015 reports the use of the commands as errors. I'd love to eliminate this noise, because it's easy for it to obfuscate real problems.
<telerik:RadButton Content="< Back" Command="wizard:RadWizardCommands.MoveCurrentToPrevious" .. />
The errors that are reported are: Invalid value for property 'Command': 'Microsoft.VisualStudio.DesignTools.XamlLanguageService.Semantics.XmlValue'
Clicking on the Decrease/Increase Handles of a RadSlider normally changes the Slider by the amount of SmallChange.
But what if I have IsSnapToTickEnabled=True and ticks are not equidistant? In this case the buttons don't work properly. For example:
<telerik:RadSlider Minimum="0" Maximum="10"
IsSnapToTickEnabled="True" SmallChange="2"
Ticks="2,4,8,13" />
leads to the problem that Increase ​Handle works well when navigating from tick 2 to 4, but then nothing more happens and no further click will bring the thump to tick 8 and 13. This is an incorrect behaviour, or am I wrong?
Peter, Germany


Hi,
Our code is using WPF with MVVM pattern. We are using the RadGridView to display the users data in rows with check box option to select/deselect all rows.
In my code I have a class which derives from
Behavior<RadGridView>and inside I have
target.AssociatedObject.SelectedItems.CollectionChanged += target.GridSelectedItems_CollectionChanged;My WPF code related to grid is:
<telerik:RadGridView x:Name="Users" HorizontalAlignment="Stretch" AutoGenerateColumns="False" ShowColumnFooters="True" SelectionMode="Extended"><telerik:RadGridView x:Name="Users"Stretch" AutoGenerateColumns="False" ShowColumnFooters="True" SelectionMode="Extended">​
Issue:
When I select all using the top most checkbox in the grid - the event
GridSelectedItems_CollectionChangedfires for every item getting selected. So, if grid have 5 users in the grid - the event fires 5 times for selection/deselection of contacts.
I think collection changed method should fire only one time.
Any clarification on this would be appreciated.
Thanks,
Nirav Patel
Hi,
I'm using RadTileView and RadFluidContentControl to display small, normal and large views. For some reason the default normal view is displaying correctly but other 2 views are not displayed. Please see below code:
<telerik:RadTileViewItem Header="​Test">
<telerik:RadFluidContentControl ContentChangeMode="Manual"
State="{Binding RelativeSource={RelativeSource AncestorType=telerik:RadTileViewItem}, Path=TileState, Converter={StaticResource FluidContentStateConverter}}">
<telerik:RadFluidContentControl.SmallContent>
<TextBlock Text="{Binding Path=textvalue}" />
</telerik:RadFluidContentControl.SmallContent>
<telerik:RadFluidContentControl.Content>
<TextBlock Text="{Binding Path=textvalue1}" />
</telerik:RadFluidContentControl.Content>
<telerik:RadFluidContentControl.LargeContent>
<TextBlock Text="{Binding Path=textvalue2}" />
</telerik:RadFluidContentControl.LargeContent>
</telerik:RadFluidContentControl>
</telerik:RadTileViewItem>
textvalue, textvalue1 and textvalue2 values are assigned in the viewmodel and it is used in the namespace:
<UserControl
d:DataContext="{d:DesignInstance viewModels:TestViewModel}"​
... />
Could you help me why small and large contents are not displaying?
Thanks
​
