[qooxdoo-devel] 0.7.2pre

2007-09-12 Thread dperez
Hi Since I'm using the latest trunk (0.7.2pre r9820), the frame that highlights the focused cell in a table, isn't well align with the cell. It's a little upwards. Has anything been spoiled lately? Regards, David -- View this message in context: http://www.nabble.com/0.7.2pre-tf4433849.html#

Re: [qooxdoo-devel] Problem calling a function in EventListener function

2007-09-12 Thread Kolodziej Christian
Hi Fabian, thanks for your answer but there was not a problem to call searchBillings() in the EventListener of the button but to call searchBillings() in checkSubmitSearchBillings() which is the EventListener function of the textfield. Thanks for the hint with the third parameter, too. But in m

Re: [qooxdoo-devel] Scrolling issue in tables

2007-09-12 Thread larytet . 56728657
I found the problem - bug on my side. I supplied non-integer numbers to the setColumnWidth() call - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go

[qooxdoo-devel] how to work with qx.io.remote.Request

2007-09-12 Thread larytet . 56728657
hello, I am trying to implement synchronous request. Example following these lines work var req = new qx.io.remote.Request(uri, "GET", qx.util.Mime.TEXT); req.setAsynchronous(false); req.addEventListener("completed", function(e) { this.__application.__getdump_content = e.get

Re: [qooxdoo-devel] Possible bug for popup positioning

2007-09-12 Thread dperez
This patch solves all the problems for Firefox 2.0. For IE7 doesn't fully work, it needs some adjustment. :-( http://www.nabble.com/file/p12649343/Popup.js.patch Popup.js.patch dperez wrote: > > Thanks Fabian, > > Positioning is solved. The problem is adjusting the position for avoiding > t

Re: [qooxdoo-devel] Possible bug for popup positioning

2007-09-12 Thread dperez
Thanks Fabian, Positioning is solved. The problem is adjusting the position for avoiding the popup getting out of the screen. menu.positionRelativeTo(element) do work, but I have to deactivate restrictToPageOnOpen. If I click near the bottom or right edge of the screen, the menu is partially

[qooxdoo-devel] Scrolling issue in tables

2007-09-12 Thread larytet . 56728657
Hello, I get a consistent exception when attempting to create a table with some specific number of columns Error: [Exception... "'Error: Error in property maximum of class qx.ui.basic.ScrollBar in method setMaximum with incoming value '966.7': Is invalid!' when calling method: [n

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-12 Thread Derrell Lipman
On 9/12/07, Fabian Jakobs <[EMAIL PROTECTED]> wrote: > westor schrieb: > > Hi Fabian, > > > > I tested it, and select of table row works fine now for both browsers. But > > in FF you still have the box at the wrong place, I will attach a gif, > > showing the problem. I don't know if these attachmen

Re: [qooxdoo-devel] Extending the Table with dynamic cellEditors and cellRenders

2007-09-12 Thread Fabian Jakobs
Hi Christian, I will take a look at you patch tomorrow. I think we should integrate it but first we have to fix this focus bug. This bug seems to be around for a long time now - just take a look at the bugzilla bugs #125 and #126

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-12 Thread Fabian Jakobs
westor schrieb: > Hi Fabian, > > I tested it, and select of table row works fine now for both browsers. But > in FF you still have the box at the wrong place, I will attach a gif, > showing the problem. I don't know if these attachments are going to the > list, but you should see ist in nabble. > >

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-12 Thread westor
Hi Fabian, I tested it, and select of table row works fine now for both browsers. But in FF you still have the box at the wrong place, I will attach a gif, showing the problem. I don't know if these attachments are going to the list, but you should see ist in nabble. Best Torsten http://www.nab

Re: [qooxdoo-devel] Problem calling a function in EventListener function

2007-09-12 Thread Fabian Jakobs
Hi Christian, take a look at the third parameter of "addEventListener". The third parameter defines the context in which the callback function is called. The special variable "this" inside of the callback is set to this context. By default the context is the event target so "this" in the event

Re: [qooxdoo-devel] error trevirtual

2007-09-12 Thread Derrell Lipman
On 9/12/07, Alessandro Rocca <[EMAIL PROTECTED]> wrote: > > > Hi all, > I'am a new user of qooxdoo. > I'm used an treeVirtual object: > I received an error after use prune method. > i descibe my actions: > 1 I instace a trevirtual > 2 call remote method to get xml > 3 prune an object > 4 call anoth

[qooxdoo-devel] Problem calling a function in EventListener function

2007-09-12 Thread Kolodziej Christian
I'm trying to submit an small form either by clicking the submit button or by hitting return when the cursor is in the textfield (everyone should know this behaviour from forms in HTML). The important parts of my code (it's within a class): // ... construct : function() { this.create(); }, me

[qooxdoo-devel] error trevirtual

2007-09-12 Thread Alessandro Rocca
Hi all, I'am a new user of qooxdoo. I'm used an treeVirtual object: I received an error after use prune method. i descibe my actions: 1 I instace a trevirtual 2 call remote method to get xml 3 prune an object 4 call another request and now receive an error. i try to use the methods: tree.removeAl

Re: [qooxdoo-devel] Possible bug for popup positioning

2007-09-12 Thread Fabian Jakobs
Hi David, > Hi, > > I have a HTML page that needs vertical scrolling. When I click some elements > in the page, a want to show a menu. That's an easy task with qooxdoo. To > position the menu near the clicked element, I use this code: > > var loc = qx.html.Location; > menu.setLocation

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-12 Thread Fabian Jakobs
westor schrieb: > Hi Fabian, > > thanks for your investigation. > I tryed the branch version, and it workes really better then the release > version. But not perfect. My experience: > Comboboxes are ok in both, IE6 and FF. > But: Table row selection works not correct in both browsers. In the releas

Re: [qooxdoo-devel] Possible bug for popup positioning

2007-09-12 Thread dperez
As suggested by Torsten, I have upgrade to the trunk and the problem isn't solved. It is partially solved if I do this: menu.set({restrictToPageOnOpen:false}); I'm going to try to debug the Popup._afterAppear routine a little dperez wrote: > > Hi, > > I have a HTML page that needs vertic

Re: [qooxdoo-devel] another bug in qooxdoo

2007-09-12 Thread dperez
No page scrolling is the 1st use I've done with qooxdoo. But now, I also use it for adding popup menus to HTML reports, and normally a lot of vertical scrolling is needed. It's not easy to convert such HTML reports to a 100% qooxdoo solution. The goals of 0.8 are good news. Sebastian Werner wr

Re: [qooxdoo-devel] Possible bug for popup positioning

2007-09-12 Thread dperez
Thanks Torsten for this valuable info. I'm going to check this now westor wrote: > > Hi David, > > this seems to be the same bug as discussed in the thread "table row select > bug (FF) and other..." > For your info: fabian solved it in the legacy 0.7.x branch, for popups (at > least combob

Re: [qooxdoo-devel] Possible bug for popup positioning

2007-09-12 Thread westor
Hi David, this seems to be the same bug as discussed in the thread "table row select bug (FF) and other..." For your info: fabian solved it in the legacy 0.7.x branch, for popups (at least comboboxes are working). But it's still not solved for selecting table rows. Torsten dperez wrote: > >

Re: [qooxdoo-devel] Problem with using tabulator and fucus html text fields with qx.ui.basic.Inline

2007-09-12 Thread Fabian Jakobs
Hi Alexander, this is bug number two in our bugzilla . Integration with existing web pages has not been a priority in the past. This will change with 0.8 but until then I see no change in getting this fixed ;-( Best Fabian > I use 4 html field and

Re: [qooxdoo-devel] Applying same values to properties

2007-09-12 Thread Dioc
Information about applying new/same property values is already present in Manual. See http://qooxdoo.org/documentation/0.7/properties#qooxdoo_property_handling http://qooxdoo.org/documentation/0.7/properties#qooxdoo_property_handling The last paragraph before "Change Events" part declares: ... Mo