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

Busy cursor when sorting

1 Answer 86 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Xoma
Top achievements
Rank 1
Xoma asked on 20 May 2010, 02:42 PM
Hello,

How do I disable busy cursor when sorting datagrid.

Thanks,

Xoma

1 Answer, 1 is accepted

Sort by
0
Accepted
Pavel Pavlov
Telerik team
answered on 21 May 2010, 09:06 AM
Hello Xoma,

Please try the following:

public MainWindow()
        {
            InitializeComponent();
  
                       this.gridView.Sorting += new EventHandler<Telerik.Windows.Controls.GridViewSortingEventArgs>(gridView_Sorting);
        }
  
        void gridView_Sorting(object sender, Telerik.Windows.Controls.GridViewSortingEventArgs e)
        {
            Mouse.SetCursor(Cursors.Arrow);
        }

Best wishes,
Pavel Pavlov
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
Xoma
Top achievements
Rank 1
Answers by
Pavel Pavlov
Telerik team
Share this question
or