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

How to set Row Height in Drop Down Rows in Grid

1 Answer 271 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 2
Mark asked on 23 Sep 2014, 07:44 PM
Does anyone know the right syntax to set the row height on a RadMultiColumnComboBox Column inside of a RadGridView?

I know how to set the row height of the RadGridView:  rgv.TableElement.RowHeight = 20

What I'm looking for is how to set the row height of the rows in the RMCCB's gridview that is a column in my main GridView...make sense?

1 Answer, 1 is accepted

Sort by
0
Accepted
Stefan
Telerik team
answered on 24 Sep 2014, 06:41 AM
Hi Mark,

Thank you for writing.

You can access the grid in the multi column combo box via the EditorControl property, so here is how the code will look like:
radMultiColumnComboBox1.EditorControl.TableElement.RowHeight = 20;

I hope this helps.

Regards,
Stefan
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
GridView
Asked by
Mark
Top achievements
Rank 2
Answers by
Stefan
Telerik team
Share this question
or