Hi Team,
I have a requirement. How can it possible to align text value data columns to left of the cell and numeric value columns to right of the cell. Is there a way to achieve it?
Hoping your help in soo,
Thanks & regards,
Assyst
Hi,
Let us know if you have further questions with this issue.
Regards,
Lyuba
Developer Support Engineer
Infragistics
www.infragistics.com/support
You can do this with css classes:
Create a css class that has the alignment you want:
.AlignRight{
text-align:right!important;
}
And set this css class for the column:
Hope this helps.