[qooxdoo-devel] selection text on straight HTML

2008-07-16 Thread simoms
In the page, I only add the qooxdoo component in the div, and using qx.ui.basic.Inline add it to existing html. the page similar as http://www.fitnesswelt.com/fitness-shop/ but the problem is when using qooxdoo, the selection and copy function is disabled. I need to active the selection and mou

Re: [qooxdoo-devel] Closable Tabs

2008-07-16 Thread Petr Kobalíček
Sorry, I missed the version 0.8 :-) It's the reason why I'm using 0.7.3, I will just wait or final release and then start experimenting with it:-) Best regards Petr 2008/7/16 Guilherme Aiolfi <[EMAIL PROTECTED]>: > Sorry I forgot to say that I'm using 0.8. > > But that's the option I was looking

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread dblacha
jhonny thio wrote: > > I have tried .setOverflow("auto"), but this command doesn't > work. > > Maybe I must tell again about my problem... > Every I pressed enter in my textfield, the textfield.value will move to > textarea. > If the textarea.value has bigger than the textarea size, will be sh

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread dblacha
jhonny thio wrote: > > I have tried : > this._TextArea.setScrollTop(this._TextArea.getScrollHeight()); in every I > update my textarea. > > this is my code : > > reqOpen.addEventListener("completed", function(e) > { > var isi = this._TextArea.getValue(); > isi

Re: [qooxdoo-devel] Closable Tabs

2008-07-16 Thread Guilherme Aiolfi
Sorry I forgot to say that I'm using 0.8. But that's the option I was looking for. I guess I'll have to wait it to be ported yet. Thank you, Petr Kobalíček. 2008/7/16 Petr Kobalíček <[EMAIL PROTECTED]>: > Hi, > > closable tabs are in demos, try this: > http://demo.qooxdoo.org/current/demobrowse

Re: [qooxdoo-devel] Closable Tabs

2008-07-16 Thread Petr Kobalíček
Hi, closable tabs are in demos, try this: http://demo.qooxdoo.org/current/demobrowser/#example~TabView_2.html // try this code:) tab.setShowCloseButton(true); tab.setCloseButtonImage("icon/16/status/dialog-error.png"); // for close images Best regards Petr 2008/7/16 Guilherme Aiolfi <[EMAIL PRO

Re: [qooxdoo-devel] qooxdoo remote I/O and server backends

2008-07-16 Thread Helder Magalhães
Derrell Lipman wrote: > > What you and the referenced link are describing are behaviors of web > servers / backends. > True, that's exactly what I'm trying to ask the community about: are there other back end which are already dealing with this? If so, how was it worked around up till now? Is t

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread thron7
jhonny thio wrote: > Only this._TextArea.getElement().firstChild.scrollTop = 200; ? > it also doesn't work. You can see my code below : > > reqOpen.addEventListener("completed", function(e) > { > var isi = this._TextArea.getValue(); > isi = isi + "\n" +mySentence+"\n

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread jhonny thio
Only this._TextArea.getElement().firstChild.scrollTop = 200; ? it also doesn't work. You can see my code below : reqOpen.addEventListener("completed", function(e) { var isi = this._TextArea.getValue(); isi = isi + "\n" +mySentence+"\n"+ e.getData().getContent();

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread Jonathan Rass
Hi Jhonny! The problem is that the "scrollTop" property is applied on the widget's div element. At the moment we have no getter or setter for the "scrollTop" or "scrollLeft" property of htmlarea elements. As workaround you can set the value on the htmlarea directly (here for qooxdoo 0.7.x): t

[qooxdoo-devel] Closable Tabs

2008-07-16 Thread Guilherme Aiolfi
hi, I'm trying to make some of my tabs closable. Is there any option to do that? and, will UploadWidget be part of qooxdoo 0.8? I couldn't find anything about it in bugzilla. - This SF.Net email is sponsored by the Moblin You

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread jhonny thio
I have tried : this._TextArea.setScrollTop(this._TextArea.getScrollHeight()); in every I update my textarea. this is my code : reqOpen.addEventListener("completed", function(e) { var isi = this._TextArea.getValue(); isi = isi + "\n" +mySentence+"\n"+ e.getData().

Re: [qooxdoo-devel] qooxdoo remote I/O and server backends

2008-07-16 Thread Derrell Lipman
On Wed, Jul 16, 2008 at 8:09 AM, Helder Magalhães < [EMAIL PROTECTED]> wrote: > > 3. The current proposed change to support such behavior is through a > configuration setting (maybe a > boolean "UseMixedMode" property, whose default value was the current > behavior) which would allow disabling an

[qooxdoo-devel] qooxdoo remote I/O and server backends

2008-07-16 Thread Helder Magalhães
Hi everyone! :-) I've experienced a few remote I/O issues which were reported [1] and mostly fixed. The one relative to bug 1017 [2] was marked invalid which made me dig further - I was sure I wasn't dreaming when I saw it! :-D This is a follow-up for that discussion... The investigation result

Re: [qooxdoo-devel] Memo autoscroll and chat application

2008-07-16 Thread thron7
jhonny thio wrote: > I have tried .setOverflow("auto"), but this command doesn't > work. > > Maybe I must tell again about my problem... > Every I pressed enter in my textfield, the textfield.value will move > to textarea. > If the textarea.value has bigger than the textarea size, will be shown

Re: [qooxdoo-devel] using Simulator to select ComboBox item

2008-07-16 Thread thron7
> Similarly to you I have very little time to spend on these things. We > have a workaround at the moment, using explicit mouseDownAt and mouseUpAt. > I think that might be where it is left for the moment. I've added a note > to the Wiki. > Appreciated. Thomas --

[qooxdoo-devel] SVN Maintenance at SourceForge

2008-07-16 Thread Andreas Ecker
Hi, as you all know the qooxdoo SVN repositories are hosted at SourceForge. They are currently in the process of updating and migrating most of their services (which is about time, really). I guess we can expect more reliable and (hopefully significantly) faster services. During migration of SVN

Re: [qooxdoo-devel] Accessing callstack or similar

2008-07-16 Thread Matthew Gregory
Thanks, I guess only having the function called from the base class isn't possible then :( I can get the same behaviour by adding custom.io.FormReader.read() to each constructor for a class that has design data but it is just one more thing to remember. Ah well! Thanks! Matthew Hugh Gibson wr