Hi,
This is what my code snippet,i have added ultraoptionset to grid row and made it to display horizontally so row height is getting increased, how can i truncate the row height?
Controls.Add(ultraOptionset1);
ultraOptionset1.Items.Add("No");
ultraOptionset1.Height = 36;
e.Row.Cells["TextAnswer"].EditorControl = ultraOptionset1;
Thanks in advance,
pavana
Pavana,
Your image doesn't seem to be attached correctly so I can't see it, but you could certainly try setting the Height of the row directly. If you only want to change the height of individual rows instead of affecting all rows, you should set the RowSizing property, such as in InitializeLayout:
e.Layout.Override.RowSizing = Infragistics.Win.UltraWinGrid.RowSizing.Free;
-Matt