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
8920
Adjusting Claymation style for
posted

I need to adjust Claymation style of Hierarchoial Data Grid.  I need to add border to the grid's cells as on picture in red, but I would like to have then as 'border-right:solid 1px #CCCCCC;' i.e. exactly as border on the addnewrow style.   I found actually css classes responsible for addnewrow style but were not able to locate classes for cell style.

Thanks

Parents
No Data
Reply
  • 7499
    Suggested Answer
    posted

    Hello Mcseidel

    To change the cell style the following class in the ig_datagrid.css needs to be modified.

    tbody.igg_ClaymationItem>tr>td

    {

                background-color:White;

                border-top:solid 1px #D8D8D8;

                border-right:solid 1px #D8D8D8;

                height: 20px;

                line-height: 20px;

                padding:5px 8px 5px 8px;

                overflow: hidden;

                text-align:left;

                vertical-align:middle;

    }

Children