Hi,
Does the qooxdoo feature to set table header cell to multiline?
__
Thanks,
Alexandr
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/Multiline-table-header-tp6617287p6617287.html
Sent from the qooxdoo mailing list archive at Nabble.com.
---
The "settings" key has been deprecated with 1.4 [1] (you must have ignored
the deprecation warnings all along), and support for it has been removed
with 1.5. Replace "settings" with "environment" in your config, and you
should be all set.
T.
[1] http://qooxdoo.org/about/release_notes/1.4#tooling
I call the generator like this ... lets me configure all relevant
bits right from the commandline ... (from a script actually)
$QOOXDOO_PATH/tool/bin/generator.py -m QOOXDOO_PATH:$QOOXDOO_PATH -m
CACHE:${TMP:-/tmp}/${USER}_QX_CACHE -m BUILD_PATH:${build_path} $1
$1 holds the generator command.
In my config.json I have:
"jobs" :
{
"common"
{
"settings" :
{
"my.key": "stringValue"
}
}
}
Under 1.4.2 I was able to get the "stringValue" like this:
var a = qx.core.Environment.get("my.key");
After migrating to 1.5 I got a warning in firebu