Hello Stefan,

it is possible to change the size of the font inside the table cells, but it
is a bit complicated.

You have to write an own cell renderer and overwrite the constructor of
qx.ui.table.cellrenderer.Abstract. Just copy the constructor code and add a
font-size entry to the map inside the compile() call.

      var stylesheet =
        ".qooxdoo-table-cell {" +
        qx.bom.element.Style.compile(
        {
          position : "absolute",
          top: "0px",
          overflow: "hidden",
          whiteSpace : "nowrap",
          borderRight : "1px solid " + colorMgr.resolve("table-row-line"),
          padding : "0px 6px",
          cursor : "default",
          fontSize : "20pt", // <-------------- here ;-)
          textOverflow : "ellipsis",
          userSelect : "none"
        })

Than you will have to modify the rowHeight property of the Table widget.

I am not sure if it is possible to hide the header of a table. Perhaps some
else know if and how this is possible?

Kind regards
Jonathan

-----
Jonathan Weiß
Framework Engineer

http://mysterycity.de/blog Blog  -  http://www.linkedin.com/in/jonathanrass
LinkedIn  -  http://www.xing.com/profile/Jonathan_Weiss5 XING 
-- 
View this message in context: 
http://n2.nabble.com/Table-data-font-and-making-table-header-disappear-tp3936690p3946230.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to