Data grid 2 width not changing on UI

0
Hi,   I have 13 columns in the data grid 2 and the column name is not displayed properly. Even when I set the column width to manual and change the width of all columns, it is not reflecting on the UI. How do I change the column width so that all column names and content is displayed properly even thought he user might have to scroll left, that is fine but how do I change the width?
asked
1 answers
0

Give your DG2 class as 'custom-dg' now apply this

.custom-dg .tr .td {  min-width: 120px;}

you can vary this 120 as per your requirement.

answered