Re: [qooxdoo-devel] GridLayout problems when added inside of VerticalBoxLayout

2006-08-23 Thread Sebastian Werner
This is a conflict in your file. You must fix this yourself. Google for "svn conflict". Hope this helps. Sebastian Sirichoke schrieb: Please see the code below: (Notice: line start with "") frVBL is VerticalBoxLayout (see the attached image) var salesOrderItemDetail = this._salesOrde

Re: [qooxdoo-devel] More table issues...

2006-08-23 Thread dperez
Hi, It seems you have to override TablePane.calculateTableRowHeight() Sirichoke Kunnavatsuwan wrote: > > Can we specified the row height for each row/all rows of Data/Header cell? > > I found it in TablePane but I try to get tablepane but can't > Please... > > dperez wrote: >> Hi, >> >>

Re: [qooxdoo-devel] Disable Logging

2006-08-23 Thread dperez
Hi, It is better to start a new thread. When you have turned off logging, a logging message must have already been generated. As a workaround, why don't you try to delete the creation of the window appender in qx.js? D. Fillpot wrote: > > How do I turn off all logging? I do not want the popup

Re: [qooxdoo-devel] More table issues...

2006-08-23 Thread Sirichoke
Can we specified the row height for each row/all rows of Data/Header cell? I found it in TablePane but I try to get tablepane but can't Please... dperez wrote: Hi, Let's see if we all can improve the powerful Table widget. I have found some more problems: 1) mytable.setBorder(qx.renderer

Re: [qooxdoo-devel] GridLayout problems when added inside of VerticalBoxLayout

2006-08-23 Thread Sirichoke
Please see the code below: (Notice: line start with "") frVBL is VerticalBoxLayout (see the attached image) var salesOrderItemDetail = this._salesOrderItemDetail = new qx.ui.layout.GridLayout; frVBL.add(salesOrderItemDetail); with (salesOrderItemDetail) { set({

[qooxdoo-devel] Disable Logging

2006-08-23 Thread Dan Fillpot
How do I turn off all logging? I do not want the popup window to open at all, and even doing this: qx.dev.log.Logger.ROOT_LOGGER.removeAllAppenders(); var divAppender = new qx.dev.log.DivAppender("debug"); //valid div element qx.dev.log.Logger.ROOT_LOGGER.addAppender(divAppender);

Re: [qooxdoo-devel] Table.js Scrollbar issues

2006-08-23 Thread lycovian
Thanks for the reply (and the info). I replaced the ._afterAppear() hack to get the scroll bars to work with the flushQueues but the scroll bar remains hidden. I wasn't sure this was the issue anyway but I had hoped. Do you think this may be a bug? The work around is easy enough but it seems l

Re: [qooxdoo-devel] Feature Wishlist

2006-08-23 Thread lycovian
By the way, the link to the Wish List page that you mention in your previous post is broken. I had wanted to add a wish list item though: In the new documentation, it would be nice if there were a link (per class) that also allowed you to see the source. The docs are still a little sparse (but m

Re: [qooxdoo-devel] widget layering

2006-08-23 Thread jd102684
Nevermind, I got it! I should have read the documentation a little better so I would have found out about this zIndex property... - Jon jd102684 wrote: > > I've got an app im working on that has a lot of dragging and dropping > widgets onto other widgets. I'm having a problem where sometimes

[qooxdoo-devel] Updated appearance wiki doc

2006-08-23 Thread dperez
http://qooxdoo.org/documentation/developer_manual/appearances Updated partially to new 0.6 syntax. Added an example of changing the default appearance, so that the text field that has the focus shows a different background color. -- View this message in context: http://www.nabble.com/Updated-a

Re: [qooxdoo-devel] Spinner as a cell editor in a table

2006-08-23 Thread dperez
As it has already been reported, an error similar to this appears when using ComboBoxes. Probably it is an interference in the handling of mouse events between the cell and the button of the editing widget (the combo or the spinner). dperez wrote: > > Hi all, > > I have tried to embed a spi

[qooxdoo-devel] Table documentation

2006-08-23 Thread dperez
Hi all, I have started to write documentation for the table widget (http://qooxdoo.org/documentation/user_manual/table), one of the most powerful and undocumented features in qooxdoo. All "table gurus" are invited to cooperate!. Regards, David -- View this message in context: http://www.nabbl

Re: [qooxdoo-devel] More table issues...

2006-08-23 Thread Muhammad Ali
Hello, In addition to 3rd issue, if you re-size the column headers to make the show column button clickable, the context menu appears left aligned. i.e. aligned left in its parent, instead of where mouse pointer is. Regards, Alee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[qooxdoo-devel] More table issues...

2006-08-23 Thread dperez
Hi, Let's see if we all can improve the powerful Table widget. I have found some more problems: 1) mytable.setBorder(qx.renderer.border.BorderPresets.inset) doesn't draw any border 2) when a horizontal scroll is needed and you click the show column button at the right, it thinks you have click

Re: [qooxdoo-devel] How to know the width of some text in given font?

2006-08-23 Thread dperez
Hi, Would it be feasible to create a Label object, and call its _computeObjectNeededDimensions()? Thanks for your time and patience. dperez wrote: > > Hi, > > In order to e.g. automatically size the columns of a table, I need to know > the width in pixels a given text occupies in a given fon

Re: [qooxdoo-devel] How can I add new items to a table

2006-08-23 Thread Alex D.
You're welcome, try this for the focused cell:     table.setFocusedCell(0, 0, false); it doesn't solve the problem but it looks a little bit better :-) Cheers, alex.d Thanks Alex, It works ok. :-) This patch would need to be applied. The only think it happens, is that the focused cel

Re: [qooxdoo-devel] How can I add new items to a table

2006-08-23 Thread dperez
Thanks Alex, It works ok. :-) This patch would need to be applied. The only think it happens, is that the focused cell is showing on the deleted cell. alex.d wrote: > > yes, you are right. i have already discussed this(see mailing list > archives). One possible solution for this is to lea

Re: [qooxdoo-devel] How can I add new items to a table

2006-08-23 Thread Alex D.
Hi, yes, you are right. i have already discussed this(see mailing list archives). One possible solution for this is to leave one empty row in the table(i know this looks not really pretty)  or use this patch(see attachment). Cheers alex.d Hi, This technique doesn't work when deleting the

Re: [qooxdoo-devel] GridLayout problems when added inside of VerticalBoxLayout

2006-08-23 Thread dperez
Hi Sirichoke, It would be better if you could us provide an example. Sirichoke Kunnavatsuwan wrote: > > If mergecell start at col 0. > The GridLayout will incorrect render. > But if merge start from col 1, that's fine... > > > > --

Re: [qooxdoo-devel] GridLayout problems when added inside of VerticalBoxLayout

2006-08-23 Thread dperez
Hi Sirichoke, It would be better if you could us provide an example? Sirichoke Kunnavatsuwan wrote: > > If mergecell start at col 0. > The GridLayout will incorrect render. > But if merge start from col 1, that's fine... > > > > --

Re: [qooxdoo-devel] Spinner alignment

2006-08-23 Thread dperez
Thanks Sebastian, It couldn't be more easy. Could it be integrated in the Spinner source code? Sebastian Werner wrote: > > myspinner._textfield.setStyleProperty('textAlign', 'right') > -- View this message in context: http://www.nabble.com/Spinner-alignment-tf2145942.html#a5939328 Sent fr

Re: [qooxdoo-devel] Table.js Scrollbar issues

2006-08-23 Thread dperez
Hi Lycovian, I use successfully qx.ui.core.Widget.flushGlobalQueues(true) lycovian wrote: > > I've successfully subclassed a qx.ui.table.Table and packaged it with an > Ajax datasource. Way cool! I'm having problems with the vertical scroll > bar though, particularly getting the thumb to sho

Re: [qooxdoo-devel] How can I add new items to a table

2006-08-23 Thread dperez
Hi, This technique doesn't work when deleting the last row of a table. An exception is received and the table doesn't repaint. :-( dperez wrote: > > Hi all, > > It couldn't be simpler. > I modify the data array and set the table model data again to the same > array. > > > dperez wrote: >

Re: [qooxdoo-devel] table selection movement

2006-08-23 Thread dperez
Hi Til, It would be interesting to create a method in the Table like this: qx.Proto.getFocusedCell() = function() { return {row: this._focusedRow, col: this._focusedCol}; } qx.Proto.getFocusedRow() = function() { return this._focusedRow; } qx.Proto.getFocusedCol() = function() { return

Re: [qooxdoo-devel] How can I add new items to a table

2006-08-23 Thread dperez
Hi all, It couldn't be simpler. I modify the data array and set the table model data again to the same array. dperez wrote: > > Hi, > > I've seen that the TableModel class has methods for changing existing > data, but what about adding new items and removing existing ones? > > I have tried t

[qooxdoo-devel] Names of qx.ui.table.SelectionModel methods

2006-08-23 Thread dperez
Hi, I have been reviewing the doc about the qx.ui.table.SelectionModel class, and maybe it would be more clear to change the name of theses methods in this way: isSelectedIndex() -> isIndexSelected() getLeadSelectionIndex() -> getBeginSelectionIndex() getAnchorSelectionIndex() -> getEndSelection

Re: [qooxdoo-devel] Is there a way to change the color of a row in a Table?

2006-08-23 Thread dperez
Hi, Search the mailing list archive. I think it has been discussed very recently (last 2 weeks or so). Gael.Guilmin wrote: > > Hi list! > > Is there a way to change the color of a row in a Table? > > Thanks! > > - Gaël GUILMIN - > > > -

[qooxdoo-devel] How can I add new items to a table

2006-08-23 Thread dperez
Hi, I've seen that the TableModel class has methods for changing existing data, but what about adding new items and removing existing ones? I have tried to modify directly the array of data, but the table gets confused. Thanks in advance for any help. Regards, David -- View this message in co

[qooxdoo-devel] Spinner as a cell editor in a table

2006-08-23 Thread dperez
Hi all, I have tried to embed a spinner as a cell editor in a table. It works ok, by using keyboard. But when I click an arrow of the spinner I get this error: ERROR: qx.event.handler.EventHandler[27]: Failed to handle mouse event: TypeError - this.getParent() has no properties The call stack

[qooxdoo-devel] Is there a way to change the color of a row in a Table?

2006-08-23 Thread Gael . Guilmin
Hi list! Is there a way to change the color of a row in a Table? Thanks! - Gaël GUILMIN - - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to

Re: [qooxdoo-devel] GridLayout without RowHeight and ColumnWidth specifications?

2006-08-23 Thread dperez
Hi, Perhaps an alternative could be use a real HTML table with embedded qx.ui.basic.Inline's en each cell. Sebastian Werner wrote: > > no, there isn't an real alternative right now. Maybe you can use > multiple boxlayouts. > -- View this message in context: http://www.nabble.com/GridLayou