Hi,
I use RadGridView in Grid panel:
The first row is Header and the second one RadGridView.
It works fine according to performance.
On the other hand this RadGridView works fine according to flexibility but not UI performance.
How to achieve such effect like having RadGridView fast UI and on the other hand when user change size of the window,
RadGridView also adjust visible amount of rows to fulfill window size.
Thanks in advance.
Robert
I use RadGridView in Grid panel:
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"60"
/>
<
RowDefinition
Height
=
"500"
/>
</
Grid.RowDefinitions
>
It works fine according to performance.
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"60"
/>
<
RowDefinition
Height
=
"Auto"
/>
</
Grid.RowDefinitions
>
How to achieve such effect like having RadGridView fast UI and on the other hand when user change size of the window,
RadGridView also adjust visible amount of rows to fulfill window size.
Thanks in advance.
Robert