Is there any way possible to have multiple cell alignments on one grid? Say I have 3 columns and I want the contents on the first cell to be aligned to the left, while the other columns are aligned to the right. Is that possible to do?
Okay, so you guys can just close this thread as I've found the answer through the following link.
http://www.igniteui.com/grid/configure-text-alignment
Hello Ryan,
I am glad you managed to resolve your issue. I will put the answer here also so that other community members could benefit from it:
dataRendered: function (evt, ui) { ui.owner.element.find("tr td:nth-child(1)").css("text-align", "right"); ui.owner.element.find("tr td:nth-child(4)").css("text-align", "right");}