No need to apologize, we all learned something from the post which makes it
very useful, thanks!
Jim
On 12/5/06, Simon Bull <[EMAIL PROTECTED]> wrote:
I see the solution... you can do:
clientDocument.addEventListener("windowresize", layout._handleResize,
layout);
without stomping on clientD
李宇光 schrieb:
> Hi all,
> I am new to Qooxdoo,there I has two problem:
> 1. I code a page,then when I browse it in IE,it will auto-open a Debug
> info window,How can I make the debug window hide? or do not auto-open?
You can reduce the debug level. Please take a look at the logger
documentation at
I see the solution... you can do:
clientDocument.addEventListener("windowresize", layout._handleResize, layout);
without stomping on clientDocument's existing "windowresize" listener.
Sorry for the spam folks,
Simon
- Original Message
From: Simon Bull <[EMAIL PROTECTED]>
To: qooxdo
1. qx.dev.log.Logger.ROOT_LOGGER.removeAllAppenders();
2.:-(
在06-12-6,李宇光 <[EMAIL PROTECTED]> 写道:
Hi all,
I am new to Qooxdoo,there I has two problem:
1. I code a page,then when I browse it in IE,it will auto-open a Debug
info window,How can I make the debug window hide? or do not auto-open?
Hi All,
Does anyone know of a neat way to listen for any resize events of a Layout?
Specifically, I have a CanvasLayout contained within the ClientDocument that is
resized when the user resizes the browser window. I need to execute some logic
when this CanvasLayout is resized.
I see that Clie
Thanks, it works great now.
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn c
Hi all,
I am new to Qooxdoo,there I has two problem:
1. I code a page,then when I browse it in IE,it will auto-open a Debug info
window,How can I make the debug window hide? or do not auto-open?
2. I use qooxdoo with JSF's Facelets which need the doctype for "xhtml" ,so I
must write
"http:/
I have searched the archives and don't see a solution for my problem. I am
in need of placing a button into the cell of a Table. And naturally I need
to be able to respond to the click event of that button. Alternatively, I
might be able to get away with a HotLink in the cell (did not see any
exam
> This could not work because you use a Windows-Path here. You must use a
> unix like path. To access your harddrive in cygwin you should use
>
> /cygdrive/c/work/jtools/thinclients/qooxdoo/qooxdoo-0.6.1-sdk
I will try your suggestion and let you know if it works...
> $ python
> import os
Hi,
I'm very glad that I have found Qooxdoo - it's really what I have look for.
I need a user login form for my application. The basics work...but
- the username and userpassword are not transmited
- the protection against multiple send requests at the same time don't work
var loginName = new
Hi,
just found qooxdoo 0.6.3 for download which resolves the issue below.
Thanks to the developers and keep up your great work!
Regards,
Martin
Martin Schaefer <[EMAIL PROTECTED]> wrote:
>
>Hi all,
>
>something puzzled me with qx 0.6.2 and I couldn't find anything related in
>bugzilla:
>
>A f
As a first workarround I've overridden the class method
qx.io.remote.XmlHttpTransport.isSupported so the test for native xmlhttp
fails if the client is mshtml:
if (window.XMLHttpRequest && !qx.sys.Client.getInstance().isMshtml())
Dietrich Streifert schrieb:
> Hello List,
>
> I'm currently t
Hello List,
I'm currently testing my application against IE7. I'm using
XMLHttpRequest (via RemoteRequest) and doing sometimes manipulations of
the received XML document.
In some scenarios I need to create a xml document and copy nodes from
one document to the other, in this case from a xmlhtt
Hi all,
can anybody tell me what locale is returned by the
getLocale/getLocaleVariant methods of the qx.sys.Client class? It seems to
be the language of the browser user interface. I expected the language
setting of the browser's options, which is used for requests. Is there any
way to get to the
Hi Oliver,
Oh yeah, It is just a Javascript.
Thank you so much! I think I can work from here!
And many thanks to Martin.
Happy programming!
On 12/5/06, Oliver Jäpel <[EMAIL PROTECTED]> wrote:
Hi,
i think, what you're looking for is 'window.location.search', which stores
the parameter inform
Henric Johansson schrieb:
> I think I know this one. The HorizontalBoxLayout has no height, so the
> VerticalBoxLayout puts them on the same top value, so to speak. Just add a
> .setHeight("auto") to the HorizontalBoxLayouts and it should work.
>
> I do not know if it's intended though.
It's in
Hi Martin,
Thank you for replying me.
Sorry, I think my example was just confusing.
It is nothing to do with the RpcTree or List object.
I want to receive values (ID) from outside of my Application called "
xxxsoft.TaxonomySelectorApplication"
, then use the ID to get some data from database to d
Hi all,
something puzzled me with qx 0.6.2 and I couldn't find anything related in
bugzilla:
A function creates a button and adds an event listener (in this "anonymous
inner method"-way, or whatever you'd call that in JavaScript). Now the event
handler modifies a variable 'tableModel' defined i
Hi,
i think, what you're looking for is 'window.location.search', which stores
the parameter information of a uri. you can then use 'split()' to parse the
variables and values of that string...
cheers
Oliver
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Au
Hi Yasu,
I might get you wrong, but possibly you misunderstand the concept: When you
write a qooxdoo "application" you only write the frontend, i.e. the client
which (once downloaded) resides and is executed in the browser. From this
application you can communicate with some server-side component
I think what you want is only possible with a backend like php or java.
What do you wanne do exactly !?
The only posiblility I see is to use a reg-exp over the url - so you
could build one which searches for ? and parses the rest of the line as
variable=value definitions.
Yasu Takahashi schrie
Concerning my earlier mail: Of course you'd need a server side application
to consume the request.
Yasu Takahashi <[EMAIL PROTECTED]> wrote:
>Hi,
>This is my first post.
>I cannot find any examples or documents about receiving GET or POST data
>sending to application. My application url is like
Hi Yasu,
am just as new as you, and I didn't try the RpcTree, yet, but in general I
found this works (leave out the Json part if you don't need it):
var req = new qx.io.remote.RemoteRequest(url, "GET", "text/plain");
var data = 0;
req.addEventListener("completed", function(e) {
data = e.getD
Hi again,
Thanks for the reply.
Because my project
On 12/5/06, Adnoh <[EMAIL PROTECTED] > wrote:
I think what you want is only possible with a backend like php or java.
What do you wanne do exactly !?
The only posiblility I see is to use a reg-exp over the url - so you
could build one which se
Hi there,
My project is compose of normal PHP/HTML/CSS programs and this new QOOXDOO
stuff I try to use for displaying all (Taxonomy) data in Tree.
Because of this I need to some how get data from outside of QOOXDOO
Application.
http://192.168.200.42/npedia/admin/search.php <-- Normal PHP/HTM
If you are not sure, please report it to this list first.
Cu,
Sebastian
Martin Schaefer schrieb:
> Hi all,
>
> forgive a newbie's question: do I report a potential qooxdoo bug to this
> list or in bugzilla?
>
> Kind regards
> Martin
>
>
>
> --
Hi,
This is my first post.
I cannot find any examples or documents about receiving GET or POST data
sending to application. My application url is like this.
http://192.168.200.42/npedia/admin/taxonomySelector/source/
and I want to send data to it like
http://192.168.200.42/npedia/admin/taxonom
Hi all,
forgive a newbie's question: do I report a potential qooxdoo bug to this
list or in bugzilla?
Kind regards
Martin
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'
28 matches
Mail list logo