Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Ramesh Alagarsamy on Jan 27, 2009 22:27
open dhtmlx forum
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>