-
10 Jan 2013 8:32 AM #1
How can I align the column header cell to center without...
How can I align the column header cell to center without...
How can I align the column header cell to center without aligning the data cells to center too. That is to say:
I want one aligning in the header and different one in the data cells of the same column
Im using a grid
Thanks
-
11 Jan 2013 5:41 AM #2
html tags are accepted in the text config (http://docs.sencha.com/ext-js/4-1/#!...olumn-cfg-text) of a column so you could do something like this:
Code:columns: [{ text: '<center>Centered Column Header</center>' ... }]


Reply With Quote