Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
460
How can i set a bigger row height?
posted

Hi there,

Im using WebDataGrid and i want to make the row's height bigger but a i don't know how to do it.

Can someone help me?

thank you

Parents
  • 16310
    Offline posted

    Hello,

    1) You can attach to the InitializeRow event of the WebDataGrid and set height the following way:

        protected void WebDataGrid1_InitializeRow(object sender, RowEventArgs e)
        {
            e.Row.Height = new Unit("50px");
        }

    2) You can also set height using css by modifying the following class in the ig_dataGrid.css file:

    tbody.igg_Item>tr>td {

    height: 50px;

    }

    Please let me know if you have further questions on the matter, I will be glad to help.

Reply Children
No Data