Re: [qooxdoo-devel] Qooxdoo, Firefox3 and Firebug 1.3 - work for anyone?

2009-02-23 Thread mshillin
All, This ended up being a firebug issue with nested frames. Seems that replacing nested framesets would break firebug debugging on scripts loaded by nested framesets - supposed to be fixed in Firebug 1.4a13. For those interested see : Discussion : http://groups.google.com/group/firebug/brow

Re: [qooxdoo-devel] UploadWidget Problem in IE 6 & 7

2009-02-23 Thread Roman Schmid
Ouch! I just noticed i was using a custom class (that extends the UploadWidget class) and i wasn't handling events correctly there. I fixed the problem and now it's working as expected. Sorry for the false alarm /shame on me/ Roman Roman Schmid wrote: > Hello Developers > > I'm encountering Pro

[qooxdoo-devel] UploadWidget Problem in IE 6 & 7

2009-02-23 Thread Roman Schmid
Hello Developers I'm encountering Problems using the UploadWidget in IE, whereas it works perfectly in Firefox, Chrome and Safari. Here's what's happening: I'm able to select a file from the file-chooser dialog. The file is then being uploaded to the server, and i get a response from the server.

Re: [qooxdoo-devel] TimeChooser

2009-02-23 Thread Derrell Lipman
On Mon, Feb 23, 2009 at 12:24 PM, Ian Horst wrote: > Hi, > > Yes, I've seen existing TimeChooser in qooxdoo-contrib, but it didn't meet > my usability requirements. > Not that I'd expect any particular widget to meet everyone's requirements, I am curious as to what your requirements were that the

Re: [qooxdoo-devel] TimeChooser

2009-02-23 Thread Ian Horst
Hi, Yes, I've seen existing TimeChooser in qooxdoo-contrib, but it didn't meet my usability requirements. It would be nice to have contributor's account, I am able to contribute other code too. Ian Horst Andreas Ecker wrote: > Hi Ian! > >> I made visual spike solution to see how my idea of

Re: [qooxdoo-devel] Table change - v0.8

2009-02-23 Thread Derrell Lipman
On Mon, Feb 23, 2009 at 12:21 PM, Jim Hunter wrote: > Derrell, > Does this mean that the table was indeed changed a bit from .7x to .8x so > that I can change the column model and it will (eventually) work? In .7x I > was not able to change the columns unless I had an exact same number of > colu

Re: [qooxdoo-devel] Table change - v0.8

2009-02-23 Thread Jim Hunter
Derrell, Does this mean that the table was indeed changed a bit from .7x to .8x so that I can change the column model and it will (eventually) work? In .7x I was not able to change the columns unless I had an exact same number of columns as the previous model. I was told that .8 didn't improve th

Re: [qooxdoo-devel] Table change - v0.8

2009-02-23 Thread Derrell Lipman
On Mon, Feb 23, 2009 at 11:26 AM, Amit Rana wrote: > I have a table in my application. I am settings its layout and data to > dummy value initially to show the GUI to user and in the meanwhile sending > the request to the server. When the server sends back the data, I update my > table with this

[qooxdoo-devel] Table change - v0.8

2009-02-23 Thread Amit Rana
Hi, I have a table in my application. I am settings its layout and data to dummy value initially to show the GUI to user and in the meanwhile sending the request to the server. When the server sends back the data, I update my table with this value. *Problem *: Initially, my dummy data has ju

Re: [qooxdoo-devel] book - documentation

2009-02-23 Thread Andreas Ecker
Hi Matteo! > anyone can tell me If a pdf or one page html is available for qx > manual and api reference? thanks , I need cause i bought i-ink powered > reading device! No, currently no such aggregated documentation is available. Nevertheless you might be able to produce it yourself: You could

Re: [qooxdoo-devel] Get Content from a request in a variable

2009-02-23 Thread Alexander Back
Hi Thomas, Thomas Bückemeyer wrote: > the Method getAktionById gets Data for a popup, so to display the popup > makes only sense, if the data from the request is ready. Under this > cirumstances it's better to make a > > -- > req.setAsynchronous(false); > -- > > in the definition of the reques

Re: [qooxdoo-devel] Get Content from a request in a variable

2009-02-23 Thread Thomas Bückemeyer
Hi Alex, the Method getAktionById gets Data for a popup, so to display the popup makes only sense, if the data from the request is ready. Under this cirumstances it's better to make a -- req.setAsynchronous(false); -- in the definition of the request, am I right? Or is there a better possibil

Re: [qooxdoo-devel] Buttons on a table

2009-02-23 Thread Alexander Back
Hi Farci, salman farci wrote: > Thanx alex, > > For question 1: I want to trigger an even for playing an audio file(lets > a voice mail). You can trigger a qooxdoo event by dispatching it at your application root. --snip-- // within your application this.getRoot().addListener("tableLinkClick

Re: [qooxdoo-devel] book - documentation

2009-02-23 Thread Jean-Baptiste BRIAUD -- Novlog
I would add one usage I found in the recent days : having to develop with qooxdoo far away from anything in the country without Internet access :-) On 21 Feb 2009, at 15:26, Matteo Orefice wrote: Hi anyone can tell me If a pdf or one page html is available for qx manual and api reference

Re: [qooxdoo-devel] error while tring to add a window

2009-02-23 Thread Christian Schmidt
Hi Narven, it sounds strange, could you please send a code snipped, which reproduce this issue. Thanks, Chris Narven schrieb: > > hi, > > every time i try to add a window this.container.add(win) it always gives me > this error.. why > > 47148ms Assertion error! Windows can only be added to

[qooxdoo-devel] error while tring to add a window

2009-02-23 Thread Narven
hi, every time i try to add a window this.container.add(win) it always gives me this error.. why 47148ms Assertion error! Windows can only be added to widgets, which implement the interface qx.ui.window.IDesktop. All root widgets implement this interface.: Expected object 'qx.ui.container.

Re: [qooxdoo-devel] Buttons on a table

2009-02-23 Thread salman farci
Thanx alex, For question 1: I want to trigger an even for playing an audio file(lets a voice mail). And thanx for question 2 solution. regards Farci On Mon, Feb 23, 2009 at 2:13 PM, Alexander Back wrote: > Hi Farci, > > salman farci wrote: > > Thanx. I was able to have Hyperlinks on imges usi

Re: [qooxdoo-devel] Get Content from a request in a variable

2009-02-23 Thread Alexander Back
Hi Thomas, Thomas Bückemeyer wrote: > I think it has to do with the completed state of the request - the > function is finished, but the request is not. Is it a good idea to check > the request state with isCompleted() to avoid that the function > getAktionById() finished before the request is

Re: [qooxdoo-devel] Buttons on a table

2009-02-23 Thread Alexander Back
Hi Farci, salman farci wrote: > Thanx. I was able to have Hyperlinks on imges using HTML cellrenderer. > But I came across two issues. > > I have two hyperlink images(htmlPlay and htmlDelete) on column 5th. The > first question is : > > How do I keep addListener for these two HTML Hyperlink