<telerikControls:RadGridView HorizontalAlignment="Stretch" ItemsSource="{Binding myCollection}" SelectedItem="{Binding mySelectedItem, Mode=OneWayToSource}" IsReadOnly="True" CanUserFreezeColumns="False" AutoGenerateColumns="False" RowIndicatorVisibility="Collapsed"><telerik:RadDateTimePicker DateTimeWatermarkContent="Select a date" StartTime="00:00" EndTime="23:59" TimeInterval="1:00" Style="{StaticResource ResourceKey=RadDateTimePickerStyle}" ></telerik:RadDateTimePicker><Style x:Key="RadDateTimePickerStyle" TargetType="{x:Type telerik:RadDateTimePicker}"> <Setter Property="telerik:StyleManager.Theme" Value="Windows8Touch" /> <Setter Property="Margin" Value="5" />......<telerik:RadDateTimePicker DateTimeWatermarkContent="Select a date" StartTime="00:00" EndTime="23:59" TimeInterval="1:00" Style="{StaticResource ResourceKey=RadDateTimePickerStyle}" telerik:StyleManager.Theme="Windows8Touch" ></telerik:RadDateTimePicker>This is by design, I assume, that when a window is minimized or nor longer active that the docking tool windows are hidden. However, we have a docking control that is a tab within a tabbed control. When the tab containing the docking control is hidden by a different tab window selection, the floating tool windows of the hidden tab's docking window are removed (hidden) from view as well. We would like an option to allow them to stay visible when their parent window is hidden.
Is there a way of preventing this default hiding of the tool windows when the parent is hidden?
I'm using RadMaskedNumericInput in a grid. how to modify properties to fill entire grid row with RadMaskedNumericInput . My RadMaskedNumericInput has a smll width.
public string MyText { get {return "My text";} set {} }
In xaml, the usercontrol have the name: x:Name="This"
Could you somehow, please help me to get MyText into the header in the menuItem?- the following example, is not working for me:
<telerik:RadToggleButton Tag="{Binding ElementName=This}" Content="Click me" IsChecked="{Binding IsOpen, ElementName=radContextMenu, Mode=TwoWay}"> <telerik:RadContextMenu.ContextMenu > <telerik:RadContextMenu x:Name="radContextMenu" Placement="Bottom" IconColumnWidth="0" DataContext="{Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.Tag}"> <telerik:RadMenuItem Header="{Binding Path=MyText}" /> </telerik:RadContextMenu> </telerik:RadContextMenu.ContextMenu> </telerik:RadToggleButton>Thanks from Kenneth :o)