Thanks, guys!
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/How-does-one-center-the-text-in-a-table-header-tp6034661p6037104.html
Sent from the qooxdoo mailing list archive at Nabble.com.
--
The ulti
Hi,
you can set a custom headerrenderer like this one below:
qx.Class.define("example.CenteredHeader",
{
extend : qx.ui.table.headerrenderer.Default,
construct : function()
{
this.base(arguments);
},
members :
{
// overridden
updateHeaderCell : function(cellInfo, cellW
Hi Andy,
you can create a custom Appearance that redefines
"table-header-cell/label", adding alignX : "center" to the returned
style definitions.
Regards,
Daniel
On 02/17/2011 05:43 AM, arnis_andy wrote:
>
> I have scrubbed the forums (and possibly not been using the right search
> terms,) bu
I have scrubbed the forums (and possibly not been using the right search
terms,) but how does one center the text in a standard qx.ui.table.Table
table's headers? I've managed to center the cell text via the cell
renderers, but would like to do the same for the headers.
--
View this message in c