Yes, you are correct, the style will be applied to all the columns inside the grid. It appears the column styles are not applied correctly and would recommend you to notify our support team so that we can fix this. From the page on the link below, click on "Ask for Help."
http://es.infragistics.com/gethelp/default.aspx#Overview
In the meantime, you can force the alignment via the column component.
<ig:column >
<f:facet name="header">
<h:outputText value="Company Name" />
</f:facet>
<h:outputText value="#{DATA_ROW.name}" style="text-align:right;width:100px;"/>
</ig:column>
Taz.
Of course,
but this solution will change all columns.
I want the text aligned to left and the numbers aligned to the right.
Thanks
Hello,
You can align the contents of the column by changing igGridColumn style within CSS to include "text-align:right;" This style is defined within igf_grid.css. By default the controls use the blue theme.
Hope this helps.