Re: [qooxdoo-devel] multiline table header cells

2011-07-25 Thread Tristan Koch
Thanks for sharing :) Am 25.07.2011 um 14:38 schrieb alexandr: > Hi, > > I made what I wanted. Maybe, it will be useful for somebody: -- Storage Efficiency Calculator This modeling tool is based on patent-pending inte

Re: [qooxdoo-devel] multiline table header cells

2011-07-25 Thread alexandr
Hi, I made what I wanted. Maybe, it will be useful for somebody: http://demo.qooxdoo.org/devel/playground/#%7B%22code%22%3A%22qx.Class.define%28%2522MultilineHeaderRenderer%2522%252C%2520%257B%250A%2520%2520extend%2520%253A%2520qx.ui.table.headerrenderer.Default%252C%250A%2520%2520members%2520%

Re: [qooxdoo-devel] Multiline table header

2011-07-25 Thread slah
Hello, I think you can create images containing multi-line text and render it to the table column header. Regards Tristan Koch wrote: > > Hi Alexandr, > > sorry, this feature is not available. > > Am 25.07.2011 um 08:27 schrieb alexandr: > >> Hi, >> >> Does the qooxdoo feature to set table

Re: [qooxdoo-devel] Multiline table header

2011-07-25 Thread Tristan Koch
Hi Alexandr, sorry, this feature is not available. Am 25.07.2011 um 08:27 schrieb alexandr: > 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-

[qooxdoo-devel] Multiline table header

2011-07-24 Thread alexandr
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. ---

Re: [qooxdoo-devel] multiline table header cells

2011-07-22 Thread alexandr
Hi, A also want to use multiline cells in table header, but I can't understand how to do that... Links to examples of MultiLineDefault.js and MultilineHeaderCell.js do not work. Can everybody provide me with working exampleas, please? :) Or... maybe in qooxdoo 1.5 there is feature to do this wit

Re: [qooxdoo-devel] multiline table header cells

2009-09-10 Thread Daniel Hirtzbruch
Fritz - here you are (I don't contribute this in the contrib section of the wiki as it's a merely short extension. http://www.nabble.com/file/p25389470/MultiLineDefault.js MultiLineDefault.js http://www.nabble.com/file/p25389470/MultilineHeaderCell.js MultilineHeaderCell.js In my app file I us

Re: [qooxdoo-devel] multiline table header cells

2009-09-09 Thread Fritz Zaucker
Hi Daniel could you post or contribute your extension? It might be useful for others ... me included ... ;-) Cheers, Fritz On Wed, 9 Sep 2009, Daniel Hirtzbruch wrote: > > Well - after having found another post by Fabian Jakobs ( > http://www.nabble.com/Re-2%3A--multiline-table-header-cells-tt2

Re: [qooxdoo-devel] multiline table header cells

2009-09-09 Thread Daniel Hirtzbruch
Well - after having found another post by Fabian Jakobs ( http://www.nabble.com/Re-2%3A--multiline-table-header-cells-tt24813494.html#a24831891 here ) I got it working. I now extended the Default Renderer also and set this extension as my headerCellRenderer. To avoid the problems that when I repl

Re: [qooxdoo-devel] multiline table header cells

2009-09-09 Thread Daniel Hirtzbruch
Hello Jonathan, after having done some other work I now continued building my qooxdoo app and stick again when coming to the Multiline HeaderCells. I got my class extension: qx.Class.define("pmaster.ui.table.headerrenderer.MultilineHeaderCell", { extend : qx.ui.table.headerrenderer.HeaderCel

Re: [qooxdoo-devel] multiline table header cells

2009-08-11 Thread Daniel Hirtzbruch
> > > BTW: Which mail client would you recommend me for writing messages to this > > list. I don't like being the only one who's mails are not displayed > > correctly in the mailing list archive ;-) And I'm not possible changing the > > answering behaviour of my mail client - except anyone nows

Re: [qooxdoo-devel] multiline table header cells

2009-08-11 Thread thron7
> BTW: Which mail client would you recommend me for writing messages to this > list. I don't like being the only one who's mails are not displayed correctly > in the mailing list archive ;-) And I'm not possible changing the answering > behaviour of my mail client - except anyone nows how to co

Re: [qooxdoo-devel] multiline table header cells

2009-08-04 Thread Daniel Hirtzbruch
ossible changing the answering behaviour of my mail client - except anyone nows how to configure the David.fx Infocenter / Server... Thanks for your help & for patience, Daniel Original Message ---- Subject: Re: [qooxdoo-devel] multiline table header cells (04-Aug-2009 15:51) Fr

Re: [qooxdoo-devel] multiline table header cells

2009-08-04 Thread Jonathan Weiß
Hello Daniel! > again I tried using the extended class for displaying multiline > table headers. I added the following lines: > > var tcm = new this.__table.getTableColumnModel(); > tcm.setHeaderCellRenderer(0, new > pricecmp.ui.table.headerrenderer.HeaderCell()); In which class did you put th

Re: [qooxdoo-devel] multiline table header cells

2009-08-03 Thread Daniel Hirtzbruch
e, > headerCellHeight: 40 > }); > What's wrong with this? The header cell height has changed > correctly when > I added the code, and the extension class is loaded correctly, I don't get > any error messages in FireBug. Maybe I've got to assign a new H

Re: [qooxdoo-devel] multiline table header cells

2009-07-31 Thread Jonathan Weiß
Hello Daniel, yes, it is possible to add linebreaks to header cells, but it is complicated and you might have to create a larger background image for header cells. You have to create a new class and extend qx.ui.table.headerrenderer.HeaderCell. Override _createChildControlImpl(): _create

Re: [qooxdoo-devel] multiline table header cells

2009-07-30 Thread thron7
Daniel, Johnny is working on an answer and will post it tomorrow. T. Daniel Hirtzbruch wrote: > Hello, > > I got another question. I constructed a table using > qx.ui.table.model.Simple(). The cell content is quite narrow, but the header > content is quite wide. Is there a possibility to add

[qooxdoo-devel] multiline table header cells

2009-07-30 Thread Daniel Hirtzbruch
Hello, I got another question. I constructed a table using qx.ui.table.model.Simple(). The cell content is quite narrow, but the header content is quite wide. Is there a possibility to add linebreaks / auto enlargement to the header cells - didn't find anything in the docs / examples. Regardi