Alignment in Datagrid and dataview

1
data-grid I find the header name and the data of the column is aligned to the right in case of the column attribute is number and to the left in case of it is another data type leading to inconsistent appearance. data-view all the cells which have render mode as header are aligned to the right while I want them to be aligned to the left by default as I think it will be better with the English language
asked
1 answers
3

You can style label tabel cells by adding these styles in your custom theme:

.mendixFormView_headerLabel {
text-align:left; (or right)
}

.tundra .mendixFormView_tableHead {
text-align:left; (or right)
}
answered