<Telerik:RadTimePicker
StartTime="0:0:0"
EndTime="0:10:0"
TimeInterval="0:0:10"
/>
>
That sets the property appropriately, but doesn't change the grid row style in the owner window. The ItemsSource of the grid is an ObservableCollection and the object (SecurityVO) implements INotifyPropertyChanged. The IsModified property calls raises the PropertyChanged event. All this seems to happen normally when the grid is loaded with some rows that have IsModified set. It will not change the row when the property is modified from a child window.
One additional thing I should add. The style fo the grid row in question is set via a DataTrigger. So the foreground color of the row is set if a particular property of the SecurityVO is set to true.
I guess I'm missing something. Any help would be appreciated.
Thanks.
<telerik:RadGridView Grid.Column="1"
Grid.Row="1"
Grid.ColumnSpan="2"
Name="telerikRadGridView1"
AutoGenerateColumns="False"
IsReadOnly="True"
ItemsSource="{Binding Source={StaticResource BLWeighCarrierList}}"
DataLoaded="telerikRadGridView1_DataLoaded"
MouseLeftButtonDown="telerikRadGridView1_MouseLeftButtonDown" (Doesn't work)
MouseDown="telerikRadGridView1_MouseDown" (Doesn't work)
MouseDoubleClick="telerikRadGridView1_MouseDoubleClick" (Don't want to use)
I'll go back to the BETA for now.
<Window x:Class="WpfApplication3.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:tRB="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.RibbonBar">
<telerik:RadComboBox Name="cBox"
IsEditable="True"
VerticalAlignment="Top">
<telerik:RadComboBox.Items>
<telerik:RadComboBoxItem Content="qwer"/>
<telerik:RadComboBoxItem Content="asdf"/>
</telerik:RadComboBox.Items>
</telerik:RadComboBox>
</Window>
Hi,
I'm trying to figure out how to databind the RadTileView correctly.
The following XAML:
<Grid>
<telerik:RadTileView
Margin="12"
Name="radTileView1"
ItemsSource="{Binding}">
<telerik:RadTileView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Description}" />
</DataTemplate>
</telerik:RadTileView.ItemTemplate>
</telerik:RadTileView>
</Grid>
Will get me the boxes with the title bar showing my Description property and the panel part of the box showing the name of the class. I'm not sure where to put the binding information for the body of the panel, and I can't find anything about databinding for this control in the docs. Is there an example somewhere of this control databound?