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
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;
}
It did work, just wonder if it is possible to deal with little misalignment of the border on he columns on the right side ( see image, column 'Type of tax process' ) somehow right border of the 'addnewrow' on the same grid aligned exactly as the header border. Please let me know.