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

Allow user to resize rows

3 Answers 128 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Arturo
Top achievements
Rank 1
Arturo asked on 27 May 2011, 04:39 PM
Hi.

I'm new in telerik so I don't know how to allow the user to resize one or more rows; just like excel or like column resize. I know that this can be perform in the DataGridView; so i suppose that this can be possible here too.

In the other hand I have an imageColumn in the radgrid that I would like to resize it while the row is resizing .

Please help me.

Thanks

3 Answers, 1 is accepted

Sort by
0
Svett
Telerik team
answered on 28 May 2011, 12:32 PM
Hi Arturo,

You can simply resize rows via mouse by hovering the row's edge and moving the mouse with left mouse button pressed. I am enclosing a sample video that demonstrates it. You need a web browser and installed Flash plugin to watch it. Also you can handle the RowHeightChanged event, where you can perform your custom synchronization logic:

this.radGridView1.RowHeightChanged += new RowHeightChangedEventHandler(radGridView1_RowHeightChanged);
 
private void radGridView1_RowHeightChanged(object sender, RowHeightChangedEventArgs e)
{
     
}

I hope this helps.

Greetings,
Svett
the Telerik team
Q1’11 SP1 of RadControls for WinForms is available for download; also available is the Q2'11 Roadmap for Telerik Windows Forms controls.
0
Aman
Top achievements
Rank 1
answered on 25 Jul 2011, 04:36 PM
I want to allow user to Resize the Header of radGridView (change height) for telerik silverlight controls
0
Maya
Telerik team
answered on 26 Jul 2011, 07:10 AM
Hello A,

This functionality is not yet implemented in the Silverlight RadGridView. You may try setting a specific size for the header row through a style, but resizing it dynamically is not possible for the time being.
 

Regards,
Maya
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
GridView
Asked by
Arturo
Top achievements
Rank 1
Answers by
Svett
Telerik team
Aman
Top achievements
Rank 1
Maya
Telerik team
Share this question
or