<
telerikRibbon:RadRibbonBackstageItem
Header
=
"Recent"
IsDefault
=
"True"
>
<
StackPanel
Margin
=
"15 15 0 0"
>
<
TextBlock
Text
=
"{Binding ElementName=testtext, Path=Text}"
/>
<
TextBox
x:Name
=
"testtext"
/>
</
StackPanel
>
</
telerikRibbon:RadRibbonBackstageItem
>
private
void
SimsGridView_MouseDoubleClick(
object
sender, MouseButtonEventArgs e)
{
SimView view =
new
SimView();
QueryableDataServiceCollectionView<Sim> dataContext =
new
Telerik.Windows.Data.QueryableDataServiceCollectionView<Sim>(db, db.Sims.Where(i => i.ID == SimsGridView.GetSelectedItem<Sim>().ID).ToDataServiceQuery<Sim>());
dataContext.PageSize = 100;
dataContext.AutoLoad =
true
;
view.DataContext = dataContext;
view.Show();
view.Focus();
}
<
telerik:RadDataForm
x:Name
=
"rdfSim"
ItemsSource
=
"{Binding}"
AutoGenerateFields
=
"False"
HorizontalAlignment
=
"Stretch"
VerticalAlignment
=
"Stretch"
ReadOnlyTemplate
=
"{StaticResource MyTemplate}"
NewItemTemplate
=
"{StaticResource MyTemplate}"
EditTemplate
=
"{StaticResource MyTemplate}"
EditEnded
=
"rdfSim_EditEnded"
CommandButtonsVisibility
=
"All"
ValidatingItem
=
"rdfSim_ValidatingItem"
DeletedItem
=
"rdfSim_DeletedItem"
>
</
telerik:RadDataForm
>
A part of a table shows the following datas:
[picture1.png]
The quick filter (Funnel Icon) doesn’t show all the values from the selectable items.
[picture2.png]
It seems well in the list, that the numbers are in ascending order, but more than one value which is in the table is missing from it (eg. ’-0,49’ or ’6,00’in the upper picture), and more than one value is duplicated (eg. ’-8,51’).
Informations and source code:
<Style x:Key="RightAlignedGridColumnStyle" TargetType="{x:Type telerik:GridViewDataColumn}">
<Setter Property="TextAlignment" Value="Right"/>
</Style>
<Style x:Key="PercentGridColumnStyle" TargetType="{x:Type telerik:GridViewDataColumn}"
BasedOn="{StaticResource ResourceKey=RightAlignedGridColumnStyle}">
<Setter Property="DataFormatString" Value="{}{0:N2}"/>
</Style>
<telerik:GridViewDataColumn Width="185" Header="Low pr % to Normal pr orig"
DataMemberBinding="{Binding LowPriceToEDLPOriginal}"
Style="{StaticResource ResourceKey=PercentGridColumnStyle}">
</telerik:GridViewDataColumn>
Is there any solution for our problem? Thank you for your answer!