Re: [qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Derrell Lipman
On Tue, Nov 25, 2008 at 9:53 PM, Kenny Tilton <[EMAIL PROTECTED]>wrote: > Kenny Tilton wrote: > > Kenny Tilton wrote: > > > >> I had a utiltity function I thought I could use several places so I > >> just tossed it in at the toplevel. This works OK running against > >> "source" but not "build". >

Re: [qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Kenny Tilton
Kenny Tilton wrote: > Kenny Tilton wrote: > >> I had a utiltity function I thought I could use several places so I >> just tossed it in at the toplevel. This works OK running against >> "source" but not "build". >> >> I suspect this is a JS-specific question, but I amjust trying to cover >> my

Re: [qooxdoo-devel] Can a widget listen for a property change event?

2008-11-25 Thread Derrell Lipman
On Tue, Nov 25, 2008 at 4:50 PM, Patrick Paskvan <[EMAIL PROTECTED]>wrote: > We could tie population of the select box on it's "click" event. The > handler would change just a bit (assigning vars sb and arr for > clarity): > > this._sb.addListener("click", this._fillBox, this); > >

Re: [qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Kenny Tilton
Kenny Tilton wrote: > I had a utiltity function I thought I could use several places so I just > tossed it in at the toplevel. This works OK running against "source" but > not "build". > > I suspect this is a JS-specific question, but I amjust trying to cover > my bases before heading over to c

[qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Kenny Tilton
I had a utiltity function I thought I could use several places so I just tossed it in at the toplevel. This works OK running against "source" but not "build". I suspect this is a JS-specific question, but I amjust trying to cover my bases before heading over to c.l.js. Is this toplevel deal ve

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-25 Thread Kenny Tilton
Kenny Tilton wrote: > Hugh Gibson wrote: > There are a couple of design issues which you're seeing the >>> >>>results of. For one thing, there seem to be too many calls to >>> > > > Ah, I beat those into submission and all of a sudden the issues I had > with tables not loading or clearin

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-25 Thread Kenny Tilton
Hugh Gibson wrote: >>>There are a couple of design issues which you're seeing the >> >>results of. For one thing, there seem to be too many calls to >> Ah, I beat those into submission and all of a sudden the issues I had with tables not loading or clearing went away. Below is my working code

Re: [qooxdoo-devel] Can a widget listen for a property change event?

2008-11-25 Thread Patrick Paskvan
On Tue, Nov 25, 2008 at 2:23 PM, Derrell Lipman <[EMAIL PROTECTED]> wrote: > Ok, so "data" is a property of the "sample.thing" class, but you're trying > to add a listener on your SelectBox object, not on an object of class > "sample.thing". There's currently no relationship between the two. Thank

[qooxdoo-devel] Appearences

2008-11-25 Thread Jim Hunter
I am still working on converting my application from .7 to .8 and for some reason my custom appearences are not working. I generate, on server startup, a file that creates my custom appearences. It worked great in .7 but I am getting "missing appearence: appearance name" on one that is there and lo

[qooxdoo-devel] Icon (images) and memory footprint

2008-11-25 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, I'm trying to manage memory footprint for all that icons on screen where 80% could be the same shared instance of Image. I just realize I can't set the image instance on tabview.Page, on Image itself ... the API appears to always be the URL string. I think that with the possibility to se

Re: [qooxdoo-devel] Can a widget listen for a property change event?

2008-11-25 Thread Derrell Lipman
On Tue, Nov 25, 2008 at 2:05 PM, Patrick Paskvan <[EMAIL PROTECTED]>wrote: > > "There is no event handler for the event 'changeData' on target > 'qx.ui.form.SelectBox[blah]" > > > - CODE SNIPPET > qx.Class.define("sample.thing", > { >extend : qx.ui.container.Co

[qooxdoo-devel] Can a widget listen for a property change event?

2008-11-25 Thread Patrick Paskvan
Hello List, I have a simple question that I'm quite sure was answered on the list in the past, but I am unable to find the answer in the archives. The question is: can a qooxdoo widget listen for a custom property data change event? In our case, a property is expected to be an array and it names

Re: [qooxdoo-devel] performance, scallability and reliability

2008-11-25 Thread Burak Arslan
Hey :) first, we're not straying too much off-topic, are we? if so please tell. Jean-Baptiste BRIAUD -- Novlog wrote: This is different problems : performance and scallability in one hand and reliability in one another. well, i'm against this school because reliability has first-degree ef

[qooxdoo-devel] Demo browser bom/Clip is broken using IE7

2008-11-25 Thread Helder Magalhães
While browsing through the Demo browser, I stumbled across a minor potential issue: resetting the clip [1] failed using Internet Explorer 7. Worked fine using Firefox 3. I tried checking using current trunk version but the build failed for some obscure reason (sounds like development has temporar

[qooxdoo-devel] 0.7 celleditor.ComboBox oddness

2008-11-25 Thread Tobias Oetiker
Look at http://demo.qooxdoo.org/0.7.3/demobrowser/index.html#test~Table_CellEditor_1.html Edit the 'status' field. As you drop down the combo box. The value of the item appears (0,1,2) instead of the text ... any ideas ? cheers tobi -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olt

Re: [qooxdoo-devel] Loading qooxdoo in the background during login

2008-11-25 Thread thron7
> 2.) There are something called packages[1] that might allow you to only > load the parts of qooxdoo you need to get your login screen working and > then continue to load the rest of the framework in the background. I'm > not 100% sure how this works though. > > Hope that points you in the rig

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread Petr Kobalíček
Hi all, I don't know where to start replying :) The configuration I posted is runtime configuration (in html) that can be generated from template. So I can switch to build/debug version at runtime. I can also switch themes and paths. It's only for qxbuild, because some variables was patched in r

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread thron7
Markus Wolf wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi Thomas, > > thanks for your input. I'll try this way. I first considered it is not > usable for us, because in the documentation is stated that this is only > relavant for development. But if it's already usable for deplo

Re: [qooxdoo-devel] firefox's general.useragent.override

2008-11-25 Thread Christian Schmidt
Hi Burak, I have talked with Fabian an we will improve the client detection. I have opened a bug for this issue: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1638 Thanks for your objection! Regards Chris Burak Arslan schrieb: > hi, > > firefox has a configuration variable called "general.usera

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread thron7
Petr wrote: > Hi Markus, > > As said Jean, > > Some of us are using qxbuild where it's possible to do this. I'm the > author of qxbuild and I must say that this also is possible by qooxdoo > itself, but you will probably need to hack it:( > No need to hack qooxdoo ;). Creating a custom librar

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Thomas, thanks for your input. I'll try this way. I first considered it is not usable for us, because in the documentation is stated that this is only relavant for development. But if it's already usable for deployment I'll give it a try. Thanks M

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread thron7
Hi Markus, > We have existing html files which are served by a java application > server and a uri naming scheme like this: > > The main file: > http://somehost/survey//index.html > > All resource files: > http://somehost/survey/resource//path/to/resource.js > > The problem with the qooxdoo integr

Re: [qooxdoo-devel] v0.8 - generate.py source to include even qx classes

2008-11-25 Thread Amit Rana
Hi, I am sorry. Just wanted to tell that it worked. There was some typo error in my config which was preventing this earlier. Thanks a ton to Thomas. regards Amit Amit Rana wrote: Amit Rana wrote: thron7 wrote: Amit, I feel your original question has not been addressed properly. Amit

Re: [qooxdoo-devel] v0.8 - generate.py source to include even qx classes

2008-11-25 Thread Amit Rana
Amit Rana wrote: thron7 wrote: Amit, I feel your original question has not been addressed properly. Amit Rana wrote: How can I modify my json files to include all the qx library classes, so that I get back to just browser refresh functionality (as in v0.7). And, in the end, when a

Re: [qooxdoo-devel] Loading qooxdoo in the background during login

2008-11-25 Thread Hugh Gibson
> I've no idea how to do that, but I was thinking specifically to let > qooxxoo file and application js files to load in the background ? Yes, you could do something like this, using the browser cache to ensure that the files are available when you really need them. The main problem might be tha

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-25 Thread Hugh Gibson
> > There are a couple of design issues which you're seeing the > results of. For one thing, there seem to be too many calls to > > _loadRowCount, and additionally, the calls to _loadRowData can > > occur "late", e.g. when a table is redisplayed when it was > > previously not visible, allowing

Re: [qooxdoo-devel] Loading qooxdoo in the background during login

2008-11-25 Thread Matthew Gregory
Hi, A couple of ideas that might help you. 1.) You could write your login screen in plain HTML/JS and display this whilst the qooxdoo framework loads in the background. You'll have to change your application to inline(?) to get it to work and then find a way of letting your qooxdoo app know whe

Re: [qooxdoo-devel] Cannot select text from editable table cell in IE

2008-11-25 Thread Jonathan Weiß
Hello Bryan, we do several things to prevent text (or more general: element) selection in qooxdoo: we use CSS properties, browser-specific HTML attributes and JavaScript to cancel events. Thus I would not blame Internet Explorer for this. ;-) Cheers, Jonathan On 24.11.2008, at 19:31, Br

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Petr, do I understand it right that the given fragment should be added to the html file before loading qooxdoo scripts? I'll try that, thanks for your help. Markus > Hi Markus, > > As said Jean, > > Some of us are using qxbuild where it's possi

Re: [qooxdoo-devel] Application Integration

2008-11-25 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Jean-Baptiste, it is not a requirement to have one big qooxdoo file (I thought the 'compiler' generate a file with all dependencies included when doing a ./generate.py build). What we need is to change the script/resource location, because we do no

Re: [qooxdoo-devel] TextField keyevents error

2008-11-25 Thread Taha Özket
Hi, Forgot our implementation :) Just try this code; main: function() { this.base(arguments); if (qx.core.Variant.isSet("qx.debug", "on")){} var doc = this.getRoot(); var text1 = new qx.ui.form.TextField(); text1.addListe