
<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.