or
public
class
MyComboBox : Telerik.Windows.Controls.RadComboBox
{
}
<
Style
x:Key
=
"MyComboBoxStyle"
TargetType
=
"Controls:MyComboBox"
>
<
Setter
Property
=
"Template"
>
<
Setter.Value
>
<
ControlTemplate
TargetType
=
"Controls:MyComboBox"
>
<
Grid
x:Name
=
"LayoutRoot"
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"*"
/>
<
ColumnDefinition
Width
=
"Auto"
/>
</
Grid.ColumnDefinitions
>
<
telerik:RadComboBox
x:Name
=
"PART_RadComboBox"
Grid.Column
=
"0"
ItemsSource
=
"{TemplateBinding ItemsSource}"
SelectedItem
=
"{TemplateBinding SelectedItem}"
SelectedValue
=
"{TemplateBinding SelectedValue}"
DisplayMemberPath
=
"{TemplateBinding DisplayMemberPath}"
SelectedValuePath
=
"{TemplateBinding SelectedValuePath}"
>
</
telerik:RadComboBox
>
<
telerik:RadButton
x:Name
=
"PART_RadButton"
Grid.Column
=
"1"
Content
=
"+"
/>
</
Grid
>
</
ControlTemplate
>
</
Setter.Value
>
</
Setter
>
</
Style
>
<
telerik:RadTabControl
Grid.Row
=
"0"
DropDownDisplayMode
=
"Visible"
ScrollMode
=
"Item"
ItemsSource
=
"{Binding Tabs}"
IsSynchronizedWithCurrentItem
=
"True"
SelectedItem
=
"{Binding SelectedType}"
ContentTemplate
=
"{StaticResource AddTabContentTemplate}"
ItemTemplate
=
"{StaticResource AddTabTemplate}"
Margin
=
"4"
/>
<
DataTemplate
x:Key
=
"AddTabTemplate"
>
<
Label
Content
=
"{Binding TypeName}"
Width
=
"150"
HorizontalAlignment
=
"Center"
VerticalAlignment
=
"Center"
/>
</
DataTemplate
>
Hi telerik support,
- In radgridview, when I apply grouping, some groups will automatically expand even if i scroll data (using EnableRowVirtualization = true).
I just want to expand the group when i click header group.
- Other hand, when grouping I select a record and update this record in code, the issues is UI not updated so i must use method ReBind().
(with same step, if i don't group data, everything is okay)
- Please tell me some infomation about grouping in radgridview.
Thanks a lot.