Hi, I have a problem with icons in my table.
When I create a qx.ui.table.model.Simple and set the data via setDataAsMapArray(...) the icons in my table are not shown. But when I use the workaround below every icon is displayed correctly. So my question is, is there a specific method that I can call so I don't need this workaround? //workaround. Just increase width of first column +1 and decrease it -1. var workaroundColNr = 0; var tcm = table.getTableColumnModel(); var tmpWidth = tcm.getColumnWidth(workaroundColNr); tcm.setColumnWidth(workaroundColNr, tmpWidth + 1); tcm.setColumnWidth(workaroundColNr, tmpWidth - 1); thanks Tobi ------------------------------------------------------------------------------ Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data. The platform includes APIs for building apps and a phenomenal toolset for data science. Developers can use our toolset for easy data analysis & visualization. Get a free account! http://www2.precog.com/precogplatform/slashdotnewsletter _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
