This is a migrated thread and some comments may be shown as answers.

[Solved] Move the mouse over the GridView highlight multiple rows

1 Answer 130 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Leo
Top achievements
Rank 1
Leo asked on 28 Nov 2010, 11:09 AM
I have a RadGridView, the SelectionMode is "Extended", the ItemsSource bind to PagedCollectionView. the Xaml like following:
<telerikGrid:RadGridView x:Name="GridView" Grid.Row="3" Grid.ColumnSpan="2"
ItemsSource
="{Binding Path=PvcCustomer}"
SelectionMode
="Extended" IsReadOnly="True"/>
When I click the row on RadGridView, the CurrentChanged event of PagedCollectionView occured, I Set the RadBusyIndicator's IsBusy to true and call WCF service to synchronize some data on CurrentChanged event, then I set RadBusyIndicator's IsBusy to false after complete WCF service. Now I move mouse, the RadGridView will highlight multiple rows.

The version of RadControls that I used is 2010.3.1110.1040

Before I used this version, I fixed this problem through the following way, but now this way is invalidation.
Before RadBusyIndicator popup
RadGridView.CanUserSelect = false;
and after RadBusyIndicator hiden
RadGridView.CanUserSelect = true;

1 Answer, 1 is accepted

Sort by
0
Milan
Telerik team
answered on 30 Nov 2010, 02:51 PM
Hi Leo,

It seems that the fix did not make it into the Q3 release for some reason. I have already fixes that and it will be available with our next Internal Build.

Sorry for this inconvenience. 


Regards,
Milan
the Telerik team
Browse the videos here>> to help you get started with RadControls for Silverlight
Tags
GridView
Asked by
Leo
Top achievements
Rank 1
Answers by
Milan
Telerik team
Share this question
or