I use MergeColumnCells Client Action to Grouping Cell have same value.
I can align cell's values horizontally with Align property in Column Optional Confings.
But if i want to align them vertically, what should i do ?
Hello @JaeHun Park
In that case, you can simply add the following CSS selector:
.wj-flexgrid .wj-cell:not(.wj-hasdropdown):not(.wj-header) > * { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
Cheers,GM
Hi @JaeHun Park,
what you can do is to add css class (e.g. TableRecords_CellMerge) and apply this class to the container that hold the expression.
.TableRecords_CellMerge {
text-align: center;
}
Thanks! @Mohamed Medhat
But i got second problem.
I need "text-overflow : ellipsis" property.
However if i use "display : flex" , ellipsis doesn't work like image. So i added ellipsis property at element.style in chrome. but nothing changed.
Could you help me one more?
Thanks you.
Please check directly on Wijmo's documentation for the right way to implement this on your CSS (check the styles.css file):
Hope it helps!
Hi @Gonçalo Martins
First, I solved problem with your help. Thanks you!
And then i need "text-overflow : ellipsis" property.
Hello @Gonçalo Martins
Thanks you for your help GM.
I didn't complete that problem. So i decide to proper width of cells.
Anyway, i really appreciate to you GM. Thanks you.
Have a nice day!