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

cursor in GridView

1 Answer 84 Views
GridView
This is a migrated thread and some comments may be shown as answers.
santosh
Top achievements
Rank 2
santosh asked on 25 Mar 2008, 06:17 AM
 Hi Telerik,
    
    I added Hand cursor in design for GridView.  Works fine till i adjust GridView column width.

    After adjusting column width, cursor returns to normal Arrow cursor.

   Do i need to add some thing in code or in design, so that for any Gridview operation, cursor will be my cursor only ?

Thanks,
Santosh Kumar

   
  
    

  

1 Answer, 1 is accepted

Sort by
0
Jack
Telerik team
answered on 25 Mar 2008, 02:06 PM
Hello santosh,

Thank you for contacting us.

This is a known issue and we will address it in our upcoming release Q1 2008. You can work around the issue by processing the MouseMove event.

Refer to the code snippet below:

this.radGridView1.MouseMove += new MouseEventHandler(radGridView1_MouseMove); 
void radGridView1_MouseMove(object sender, MouseEventArgs e) 
    if (e.Button == MouseButtons.None) 
    { 
        this.radGridView1.Cursor = Cursors.Cross; 
    } 
 

I hope this helps. Do not hesitate to write me if you have other questions.

Kind regards,
Jack
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
GridView
Asked by
santosh
Top achievements
Rank 2
Answers by
Jack
Telerik team
Share this question
or