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

How to manupulated the height of Filter row which contain the filter textbox in RadGrid.

1 Answer 296 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jiten
Top achievements
Rank 1
Jiten asked on 19 Feb 2011, 12:14 PM
hello,

How to manupulated the height of Filter row which contain the filter textbox in RadGrid.
I hope, property could change the heigth. But I dont know how to do.



Thanks You


Best Regards
Jiten Kumar


1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 21 Feb 2011, 06:05 AM
Hello Jiten,

Try the following code snippet in ItemCreated event.
C#:
protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)
 {
     if (e.Item is GridFilteringItem)
     {
         GridFilteringItem item = (GridFilteringItem)e.Item;
         item.Height = Unit.Pixel(100);
     }
 }

Thanks,
Shinu.
Tags
Grid
Asked by
Jiten
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or