[qooxdoo-devel] using CSS style inside HorizontalSplitPane

2008-06-02 Thread Dan, Trif
how implement this design so the CSS style to be applied only to that HTML content (the right side of the splitpane) and not affect other areas. Regards, Dan -- Dan Trif Java Development 1&1 Internet AG - Romania 18 Mircea Eliade St. Tel :+40-21-319-3571 ext. 511 Se

[qooxdoo-devel] Error while sending large text as a request parametter

2008-04-23 Thread Dan, Trif
x.io.remote.Request(url, "POST", qx.util.Mime.JSON); request.setAsynchronous(false); request.setRequestHeader("Content-Type", "application/json"); request.setParameter("largeContent", largeTextContent); request.send(); Best rega

[qooxdoo-devel] Table cell background color does not change on edit (using theme Ext)

2008-02-13 Thread Dan Trif
te in edit mode? Regards, -- Dan Trif Java Development 1&1 Internet AG - Romania 18 Mircea Eliade St. Tel :+40-21-319-3571 ext. 511 Sect 1, Bucharest Mobile: +40-749-770-517 012015, Romania Email : [EMAIL

Re: [qooxdoo-devel] Table model Simple removeRows issue on event changeSelection

2008-02-07 Thread Dan Trif
ectedValue = tableModel.getValue(0, index); }); ... and when removeRows method triggered the event listener the element with this index did not exist I found that works ok if I'm using var index = table.getFocusedRow(); .. and this fixed my problem. cheers, Dan -- Dan Trif Java Development

[qooxdoo-devel] Table model Simple removeRows issue on event changeSelection

2008-02-06 Thread Dan Trif
Hi, I'm using a table which has a changeSelection event listener attached. On the listener I get a value from the currently selected row and do other things ... Using qooxdoo version 0.7.2 everythingh worked fine but when I switched to 0.7.3 I found out that the method removeRows(Integer |startI

[qooxdoo-devel] Table vertical scrollbar always visible?

2008-02-06 Thread Dan Trif
Hi, Any ideea how to make the vertical scrollbar always visible even when the table has no elements? Best regards -- Dan Trif Java Development 1&1 Internet AG - Romania 18 Mircea Eliade St. Tel :+40-21-319-3571 ext. 511 Sect 1, Bucharest Mobile: +40-749-770-517 01

[qooxdoo-devel] Remove Row from Table Model

2008-02-01 Thread Dan Trif
Hi, I'm using the following code to remove selected row from a table: var tableModel = new qx.ui.table.model.Simple(); var table = new qx.ui.table.Table(tableModel, tableBehaviour); function removeSelectedRow(){ table.getSelectionModel().iterateSelection(function(index){