The new data grid doesn't seem to have a row height property. Where can I find this?
Hello,
I am following up to see if you have any further questions with this matter.
Thanks,
Bhadresh
It is possible to set row height using CSS class. You may use InitializeRow event of WebDataGrid and set CSS class for row in this event as follows:
protected void WebDataGrid1_InitializeRow(object sender, Infragistics.Web.UI.GridControls.RowEventArgs e){e.Row.CssClass = "rowheight";}
In the mark up of the page set CSS class as follows:
<style type="text/css">
.rowheight{height:70px;}</style>
You may also set other CSS attributes and change row height based on your business requirement.
Hope this helps.