Hi All
I had implemented INotifyDataError for my project it works fine for all column except the one in DataTemplate.(Error add to collection but it doesn't show in GridView)
<telerik:RadGridView x:Name="grvData"
ItemsSource="{Binding AllData, Mode=TwoWay}"
SelectedItem="{Binding SelectedData, Mode=TwoWay}"
IsFilteringAllowed="False"
ShowGroupPanel="False"
AutoGenerateColumns="False"
ShowInsertRow="True"
CanUserDeleteRows="False"
IsSynchronizedWithCurrentItem="True"
ActionOnLostFocus="None" BeginningEdit="grvData_BeginningEdit"
Helper:EventFocusAttachment.ElementToFocus="{Binding ElementName=grvDataMaster}"
Grid.Column="1">
<telerik:RadGridView.Columns>
<telerikGrid:GridViewColumn Header="کل تسعير ارز" Width="150">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock>
<TextBlock.Text>
<MultiBinding Converter="{StaticResource NameConverter}" ConverterParameter="FormatNameValue">
<Binding Path="ExchangeKolCode"/>
<Binding Path="ExchangeKolName"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
<telerik:GridViewColumn.CellEditTemplate>
<DataTemplate>
<Controls:LookUp LookUpItemsSource="{Binding DataContext.KolLookUpItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
LookUpId="{Binding ExchangeKol,Mode=TwoWay}"
LookUpName="{Binding ExchangeKolName,Mode=TwoWay}"
LookUpCode="{Binding ExchangeKolCode,Mode=TwoWay}" />
</DataTemplate>
</telerik:GridViewColumn.CellEditTemplate>
</telerikGrid:GridViewColumn>
</telerik:RadGridView>
Once I drag the Chart from toolbox I got this error. <<The attached Picture>>
Could you please let me know how to resolve it?
Thanks a lot
Sometimes the users paint themselves into a corner and set up the UI in an unwanted way. I would like a way to clear settings (all would be fine, but the ability to clear only some would also be better).
Something like
IsolatedStorageProvider isoProvider = new IsolatedStorageProvider();
isoProvider.ClearStorage();
isoProvider.ClearStorage(“myGridView”);
This would remove the files from isolated storage and revert controls to default settings.