or
<
telerik:RadGridView.HierarchyChildTemplate
>
<
DataTemplate
>
<
telerik:RadGridView
AutoGenerateColumns="False"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding Items}"
RowStyleSelector="{StaticResource CycleActivityProductRowStyleSelector}">
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Speed}"
Header
=
"Speed"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Output}"
Header
=
"{Binding Output}"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
</
DataTemplate
>
</
telerik:RadGridView.HierarchyChildTemplate
>
DataMemberBinding="{Binding ImageUrl}"and the actual value is ../images/warning.ico. The same happens with other formats like png as well. Any suggestions on improving the performance?
I am using the RadGridView to display system events. As new events are observed they are added to the grid's data context. After the data context grows to a particular number of items the oldest items begin to be removed as new items are added. This creates a constantly scrolling view of the items after it reaches maximum size. The number of events occurring in the system make this view unreadable. To correct this problem the visible rows of the grid should be fixed if the scroll bar is not at position zero. Any suggestion on how I could accomplish this would be appreciated.
Thanks,
Matt