Re: [qooxdoo-devel] qooxdoo inside existing html

2007-09-10 Thread Hugh Gibson
> It works fine, and perhaps it's one of the basic tips missing in > the doc... > > Here is a summary : > === > How to insert widgets in place inside an existing HTML page ? So add this to the Twiki! Hugh -

Re: [qooxdoo-devel] qx.ui.menu.Menu and it's width afer locale changing.

2007-09-10 Thread Hugh Gibson
> after querying Bugzilla I found that this Bug is still to be > addressed. Is there a workaround available for the 0.7.x legacy > branch? Why don't you just dispose the old menu and create a new one? Hugh - This SF.net ema

[qooxdoo-devel] Test not always getting updated

2007-09-10 Thread Jim Hunter
read the description to see what the problem WAS, jump to the bottom for the fix Using qooxdoo .7.1, I have some functions that I call inside message handling code that does not always seem to work. I am using the qx.event.message.Bus.subscribe() method to run some code when different p

Re: [qooxdoo-devel] Java RPC backend

2007-09-10 Thread Andreas Junghans
Hi, Am 10.09.2007 um 15:18 schrieb Siarhei Barysiuk: > Have one question about Java RPC backend for qooxdoo. > I try to explain with a little example. > For example in service I have method > > ... > public void echo(String a,Bean b){ > return a+b; > } > ... > > where Bean is org.some.packag

Re: [qooxdoo-devel] How to structure a big qooxdoo application?

2007-09-10 Thread Jim Hunter
Look at the way the source code for qooxdoo is laid out. Follow this model and you can't go wrong. it keeps everything neat and tidy and easy to maintain. Jim www.D4PHP.org www.D4PHP-Hosting.com On 9/10/07, Kolodziej Christian <[EMAIL PROTECTED]> wrote: > > Hello everybody, > > i've just start

Re: [qooxdoo-devel] Html in a table cell

2007-09-10 Thread Jim Hunter
You are not using a renderer that supports links. Here is what we use: qx.Class.define("LinkDataCellRenderer", { extend:qx.ui.table.cellrenderer.Default, construct:function() { qx.ui.table.cellrenderer.Default.call(this); }, members: { _getContentHtml:function(cellInfo) {

Re: [qooxdoo-devel] Html in a table cell

2007-09-10 Thread miguel
I saw that cellrenderer. Just couldn't make it work. Here is my code: var tableModel = new qx.ui.table.model.Simple(); tableModel.setColumns([ "ID", "Name", "Department" ]);//columns headers var rowData = [['a',23,34],[a,23,43]]; tableModel.setData(rowData); tableMo

Re: [qooxdoo-devel] Three build problems

2007-09-10 Thread thron7
Hi Fabio, Thanks for your detailed reports. > Internationalization > When using internationalization with an APPLICATION_SOURCE_PATH containing > spaces (which are correctly escaped, like "/cygdrive/d/my\ dir" - without > quotes!), xgettext failes with the following error, thus only producing empt

Re: [qooxdoo-devel] qooxdoo inside existing html

2007-09-10 Thread Philippe Poulard
Many many thanks ! It works fine, and perhaps it's one of the basic tips missing in the doc... Here is a summary : === How to insert widgets in place inside an existing HTML page ? In the HTML code : -to activate the scollbars some settings in the html page must be set before lo

Re: [qooxdoo-devel] What's the revised roadmap for 0.7.2

2007-09-10 Thread Hugh Gibson
Andreas, > As planned there will be a 0.7.2 maintenance release that includes > many bugfixes. I corrected the roadmap, and we are going to find an > appropriate spot for the 0.7.2 soon (probably this Sep.). Users that > really depend on current bug fixes may consider using the > legacy_0_7_x br

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-10 Thread Hugh Gibson
> I was able to fix those issues with this new functionality in the > trunk. To fix it in the legacy 0.7 branch we may have to backport > some classes but I am not sure about the required dependencies. So how long until 0.8 comes out? Westor, can you wait? Hugh

Re: [qooxdoo-devel] What's the revised roadmap for 0.7.2

2007-09-10 Thread Andreas Ecker
Hi Hugh, there are of course the typical bugs or shortcomings that get noticed, filed and tackled. It is always good to get the users' feedback and help here, so please keep filing bug reports or fixing problems. As planned there will be a 0.7.2 maintenance release that includes many bugfixes. I

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-10 Thread Fabian Jakobs
Hugh Gibson schrieb: >> Another issue: The combobox popup opens at wrong place, if you >> scroll the >> browser. This error occures in both browsers, IE and FF. Sorry for >> beeing >> late with this, I saw it now. >> > > That's pretty dramatic, and will probably be due to the coordinate syst

[qooxdoo-devel] Java RPC backend

2007-09-10 Thread Siarhei Barysiuk
Hello, Have one question about Java RPC backend for qooxdoo. I try to explain with a little example. For example in service I have method ... public void echo(String a,Bean b){ return a+b; } ... where Bean is org.some.package.Bean public class Bean{ int a; int b; ... } and in java

[qooxdoo-devel] How to structure a big qooxdoo application?

2007-09-10 Thread Kolodziej Christian
Hello everybody, i've just started to develop a big application using qooxdoo. The problem ist that I have still many LOCs and by-and-by the application become more and more disordered. So how do you structure your qooxdoo applications maybe by separating the code into classes, packages and/or

[qooxdoo-devel] Focus event on tables

2007-09-10 Thread dperez
Hi If the focus is in a textbox and then I click on a qx.ui.table.Table, then the table doesn't receive any 'focus' event. I expect to receive it. Is this a bug? Regards, David -- View this message in context: http://www.nabble.com/Focus-event-on-tables-tf4413525.html#a12589856 Sent from the

Re: [qooxdoo-devel] qx.ui.menu.Menu and it's width afer locale changing.

2007-09-10 Thread Peter Schneider
Hi, after querying Bugzilla I found that this Bug is still to be addressed. Is there a workaround available for the 0.7.x legacy branch? /Kuddel Original From: Sergei Kolomiets Date: 04.05.2007 15:18 > > >> Hello Sergei, >> >> yes this is a bug in the menu layouter, which is

Re: [qooxdoo-devel] qooxdoo inside existing html

2007-09-10 Thread westor
Hi Philipe, you have to insert a div container in your html page. To activate the scollbars you have to change the settings in your html page, before you load your application: qxsettings = new Object(); qxsettings["qx.enableApplicationLayout"] = false; In your application yo