Categories | Question details Back To List | ||
different alignment for cells in a same column Hello Team, I am using your latest dhtmlxGrid version. I need a solution, how to implement the "different alignment for cells in a same column". Thanks in advance. Regards, Ramesh Alagarsamy Answer posted by dhxSupport on Jan 28, 2009 01:11 You can set different alignment for cells in a same column using custom css for the separate row or cell: <cell class="customStyle">Cell data</cell> or <row class="customStyle"> ... </row> <style> .customStyle {text-align: right} </style> |