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

RadGrid Drag/Drop Highlight

1 Answer 100 Views
Grid
This is a migrated thread and some comments may be shown as answers.
dtrumbower
Top achievements
Rank 1
dtrumbower asked on 12 Nov 2008, 09:23 PM
If you drag a row from one radgrid to an empty radgrid, there is no visual cue that you can drop the row. If there is already a row in the second grid, you get the drop line indicator.

Is there a way to show a visual cue when the grid is empty?

Thanks
Dwight

1 Answer, 1 is accepted

Sort by
0
Yavor
Telerik team
answered on 14 Nov 2008, 01:51 PM
Hi,

One possible option in this case would be to set an attribute to the grid, for example for the mouse over event:

.cs
 protected void RadGrid1_PreRender(object sender, EventArgs e)  
    {  
        RadGrid1.MasterTableView.Attributes.Add("onmouseover", "setIndicator();");             
    } 

In the handler, you can alter the appearance of the control, thus providing a visual hint to the user.
I hope this helps.

Sincerely yours,
Yavor
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Grid
Asked by
dtrumbower
Top achievements
Rank 1
Answers by
Yavor
Telerik team
Share this question
or