Made Overflow Column header as ellipsis

0
Hi Team,  I am using datagrid2 , and i have column header values which is large enough to be overflowing in adjacent columns, how can i make overflowing content to be ellipsis.  
asked
2 answers
0

Hi manish,

you can give datagrid2 class as custom-dg and then apply following css

.custom-dg .th span{

overflow:hidden;

word-space:nowrap;

text-overflow:ellipsis}

 

Hope it helps!

answered
0

Just put CSS in appearance 

overflow-x : scroll;

answered