or
<telerik:RadGridView.Resources> <Style TargetType="telerik:GridViewGroupRow"> <Setter Property="HorizontalContentAlignment" Value="Stretch"/> </Style> <Style TargetType="telerik:GridViewHeaderRow"> <Setter Property="HorizontalContentAlignment" Value="Stretch"/> </Style> <Style TargetType="telerik:GridViewGroupPanel"> <Setter Property="HorizontalContentAlignment" Value="Stretch"/> </Style></telerik:RadGridView.Resources><DataTemplate x:Key="RequiredCondition"> <telerik:RadComboBox ItemsSource="{Binding Path=DataContext.Conditions, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type views:PropertyEditorView}}, Mode=OneWay}" DisplayMemberPath="Name" SelectedItem="{Binding CurrentPropertySet[RequiredCondition]}" ToolTip="{Binding ElementName=cboRequiredCondition, Path=SelectionBoxItem.Description}" ClearSelectionButtonContent="Clear" ClearSelectionButtonVisibility="Visible" TextSearchMode="Contains" x:Name="cboRequiredCondition"/> </DataTemplate>
Hello,
I have a View whith a GridView bound to RadDataFilter bound to an QueryableEntityCollectionView<T> exposed in a View-Model.
I have few questions :
Does when the user add filter to the RadDataFilter the data is filtered directly in SQL ?
How to implement assync data loading ? I have the folowing exception when using the DeferRefresh method :
Cannot change or check the contents or Current position of the QueryableCollectionView whileRefresh is being deferred.
Thank you,
Benjamin
<telerik:RadBarcode39 x:Name="BarCodeDisplay" Grid.Row="4" Height="80" Width="100" HorizontalAlignment="Center" VerticalAlignment="Center" ShowChecksum="False" Text="Hello"/>
The code is getting displayed with the Text "Hello" below the bar. I need to just display the bar code without the Human readable text.