or
<
telerik:RadOutlookBar
x:Name
=
"RadOutlookBar"
Grid.Column
=
"0"
SelectedItem
=
"{Binding SelectedSection, Mode=TwoWay}"
>
</
telerik:RadOutlookBar
>
ObservableCollection<
Foo
> Bar
<
telerik:RadDataPager x:Name="radDataPager"
Source
=
"{Binding Bar}"
/>
<
ListBox
ItemsSource
=
"{Binding PagedSource, ElementName=radDataPager}"
/>
row.Visibility =
Visibility.Collapsed;
then blank spaces appears accross the row in my TreeListView. I do nt want to show the row based on my condition. How i will be able to accomplish that. Please help me.
if
(objBind.Level == 3 && objBind.Items.Count == 0)
{
row.Visibility =
Visibility.Collapsed;
row.Height = 0.0;
}
<
telerik:GridViewComboBoxColumn
Width
=
"auto"
Header="{localization:Translate
Key
=
Ressource_libelleRess
,
Default
=
'Libellé Ressource'
}"
DataMemberBinding
=
"{Binding RessourceMoyensID, Mode=TwoWay}"
ItemsSource
=
"{Binding ListRessourceMoyens}"
DisplayMemberPath
=
"Value.LibelleRessource"
SelectedValueMemberPath
=
"Value.RessourceMoyensID"
IsComboBoxEditable
=
"True"
>
<
telerik:GridViewComboBoxColumn.EditorStyle
>
<
Style
TargetType
=
"telerik:RadComboBox"
>
<
Setter
Property
=
"IsFilteringEnabled"
Value
=
"True"
/>
<
Setter
Property
=
"TextSearchMode"
Value
=
"Contains"
/>
<
Setter
Property
=
"IsReadOnly"
Value
=
"True"
/>
<
Setter
Property
=
"StaysOpenOnEdit"
Value
=
"True"
/>
<
Setter
Property
=
"OpenDropDownOnFocus"
Value
=
"True"
/>
</
Style
>
</
telerik:GridViewComboBoxColumn.EditorStyle
>
</
telerik:GridViewComboBoxColumn
>