Re: [qooxdoo-devel] Request to join qooxdoo-contrib Contributors

2015-12-08 Thread Tobias Oetiker
Hi Adrian, just create a pull request on https://github.com/qooxdoo-contrib/catalog cheers tobi Today Adrian Haarbach wrote: > Hi, > > I would like to contribute to qooxdoo-contrib. > > My github account name is adrelino. > > please add me to the Contributors team. > > cheers, > > Adrian Haarba

[qooxdoo-devel] Request to join qooxdoo-contrib Contributors

2015-12-08 Thread Adrian Haarbach
Hi, I would like to contribute to qooxdoo-contrib. My github account name is adrelino. please add me to the Contributors team. cheers, Adrian Haarbach -- Go from Idea to Many App Stores Faster with Intel(R) XDK Give yo

Re: [qooxdoo-devel] Request URI to larg

2012-11-28 Thread Martin Wittemann
Hey, I don't get what the problem. What do you try go get and whats the problem / error you get and where from? Based on that small code piece, I can not see anything what could go wrong. Regards, Martin Am 28.11.2012 um 10:48 schrieb smisonli...@googlemail.com: > Hello i have a larger numebr

[qooxdoo-devel] Request URI to larg

2012-11-28 Thread smisonli...@googlemail.com
Hello i have a larger numebr of data to transfer i use this code to send it via post var req = new qx.io.remote.Request(makebiz.system.Globals.processorURL, "POST", "application/json"); req.setRequestHeader("Content-Type", "application/x-www-form-urlen

Re: [qooxdoo-devel] Request timeout

2012-10-04 Thread Derrell Lipman
On Thu, Oct 4, 2012 at 2:27 AM, jden123 wrote: > Hi! > I'm trying to work with web service using qooxdoo. I've wrote a simple > sample. Please review it below. It always shows "timeout" message. What is > the reason of this behaviour? What am I doing wrong? > You're issuing a cross-domain reques

Re: [qooxdoo-devel] Request problem using C# webservice

2011-10-04 Thread Martin Wittemann
Hey, sounds strange. A first question is if you know what cross origin request means? Usually, thats the number one trap doing requests. Other than that, I can't tell if its the client or the server side which looses the parameter. It would sure help if you check the data via a proxy (fiddler e.

[qooxdoo-devel] Request problem using C# webservice

2011-10-03 Thread jonasrdm
Hail! I'm having a problem to make a request using my .net web service. In requests that dont demands parameters i easily get my json response, but setting a parameter to my request make it dont even get to server side, and i get the error that the content of the request is null. here's the examp

Re: [qooxdoo-devel] Request Header - POST

2010-11-21 Thread Mustafa Sak
I am usually using RPC object for Ajax requests. But I would advise you to don't use req.setRequestHeader("content-type", "ISO-8859-1"); Regards Sak Von meinem iPhone gesendet Am 21.11.2010 um 13:19 schrieb georg : > > Hi Sak, > > thank you very much. > > > But it is normally that the data

Re: [qooxdoo-devel] Request Header - POST

2010-11-21 Thread georg
Hi Sak, thank you very much. But it is normally that the data is saved as followed: qx-table cell: ääüüööaaööaaöö HTTP Header POST-Variable: ääüüööaaööaaöö (Content-Type:application/x-www-form-urlencoded, ISO-8859-1) HTTP ResponseContent: ääüüööaaööaaöö MySql-table: ääüüö

Re: [qooxdoo-devel] Request Header - POST

2010-11-20 Thread Mustafa Sak
Hi Georg, I guess you should always use UTF8 for any string storage. Qx is normally sending in UTF8. So you should change your table or better your database to this collocation. I am using UTF8 general. By the way, sometimes php is not well configured for UTF8. So you have to send a query firs

[qooxdoo-devel] Request Header - POST

2010-11-20 Thread georg
Hi, i don't know how i set the correct charset in the header file. I get a "ä" from a table cell and send it to an Mysql database. I try it with the charset ISO-8859-1. In the header appears this: r0="ä" How can i fix this problem? createTable : function(tablename) { // Call the backend serv

Re: [qooxdoo-devel] [Request inclusion?] A mixin that manages automatic removal of events & bindings

2010-08-02 Thread Martin Wittemann
Hey, Bug filed! http://bugzilla.qooxdoo.org/show_bug.cgi?id=3945 Thanks. :) Regards, Martin -- The Palm PDK Hot Apps Program offers developers who use the Plug-In Development Kit to bring their C/C++ apps to Palm for a

Re: [qooxdoo-devel] [Request inclusion?] A mixin that manages automatic removal of events & bindings

2010-08-02 Thread Ralf Nieuwenhuijsen
Hi Martin, Bug filed! http://bugzilla.qooxdoo.org/show_bug.cgi?id=3945 I don't think you need to worry too much about it. *It's not a replacement for "addListener" and "bind". * I've called them something different *on purpose*. Events and bindings get removed by two different mechanism current

Re: [qooxdoo-devel] [Request inclusion?] A mixin that manages automatic removal of events & bindings

2010-08-02 Thread Martin Wittemann
Hello Ralf, thanks for the details. Could you open up a bug report for that? That a thing i need to think about a but because i'm not sure if we want that behavior in every situation. Additionally, I currently have no idea of the side effects of that. Maybe is slows down the shutdown, maybe it

[qooxdoo-devel] [Request inclusion?] A mixin that manages automatic removal of events & bindings

2010-08-02 Thread Ralf Nieuwenhuijsen
*Hi all,* Below is a *mixin* for the *automatic removal of remote listeners & bindings * on dispose. Rather than calling [target].addListener, [target].addListenerOnce or [source].bind you call either of these two methods: [myObject].addListenerTo( [target], [event], [func], [context] ) [myO

Re: [qooxdoo-devel] Request for simple example to table object

2010-05-09 Thread Derrell Lipman
On Sat, May 8, 2010 at 07:00, palecks wrote: > > Hello, > i'm new to qooxdoo and i'm trying to develop a table connecting to MySql > database. > Can anyone give me an example to preform this task. > If you're into (or can read) PHP, I think you'll find the contrib project RpcExample to be enligh

Re: [qooxdoo-devel] Request for simple example to table object

2010-05-08 Thread Petr Kobalíček
Hi, I will not give you example, but some hints: 1. You need to perform ajax request to tell your server to send you data you want. 2. When your request arrives then you should fill the table (using a table model). 3. If you are newbie, try to use simple table model first, then after you understa

[qooxdoo-devel] Request for simple example to table object

2010-05-08 Thread palecks
Hello, i'm new to qooxdoo and i'm trying to develop a table connecting to MySql database. Can anyone give me an example to preform this task. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Request-for-simple-example-to-table-object-tp5023030p5023030.html Sent from the qooxdoo

Re: [qooxdoo-devel] Request for removing (UTF-8)BOM of file (qooxdoo-1.0.x ++)

2010-04-09 Thread Peter Schneider
> Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3573 Thank you for the quick fix! I did not even had to file a bug... that's service ;) /Peter > T. > > On 04/07/2010 03:08 PM, Peter Schneider wrote: >> Hi there, >> >> I would like to see the BOM removed from the file >> ".\framework\source\

Re: [qooxdoo-devel] Request for removing (UTF-8)BOM of file (qooxdoo-1.0.x ++)

2010-04-09 Thread thron7
Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3573 T. On 04/07/2010 03:08 PM, Peter Schneider wrote: > Hi there, > > I would like to see the BOM removed from the file > ".\framework\source\class\qx\lang\Core.js". > If anyone responsible would be so nice to do that in both "trunk" and > "bran

[qooxdoo-devel] Request for removing (UTF-8)BOM of file (qooxdoo-1.0.x ++)

2010-04-07 Thread Peter Schneider
Hi there, I would like to see the BOM removed from the file ".\framework\source\class\qx\lang\Core.js". If anyone responsible would be so nice to do that in both "trunk" and "branch_1_0_x"? My scan for further files that might have the (UTF-8)BOM, found no more sources. I know that these leading

[qooxdoo-devel] Request pooling?

2007-12-15 Thread Jim Hunter
I saw this code come across the qooxdoo-bugs list and was wondering if this technique would work for remote.Request objects and if it would work, would there be a benefit? What I am thinking about is perhaps coming up with a connection pool that keeps the connection alive so the subsequent requests

Re: [qooxdoo-devel] Request

2007-06-14 Thread Marc van Woerkom
Hi, the documentation is a little bit scattered. I would suggest to work through examples in the SDK release and to browse through the API via the apiviewer application. For special topics you will find dedicated articles on the qooxdoo site. In general it helps if you are familiar with one of t

Re: [qooxdoo-devel] Request

2007-06-13 Thread Alex Back
Hi Claudio, Claudio wrote: > Hi, where I can find one detailed documentation on qooxdoo? > > creed that one situated on site is not much simple for who must begin . Did you took a look at the documentation at qooxdoo.org? The "Getting Started" section is a good start point for beginners. Documen

[qooxdoo-devel] Request

2007-06-13 Thread Claudio
Hi, where I can find one detailed documentation on qooxdoo? creed that one situated on site is not much simple for who must begin . thanks - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE

Re: [qooxdoo-devel] Request Question in 0.6.6 Cont.

2007-05-24 Thread Steve Ramage
7; Subject: [qooxdoo-devel] Request Question in 0.6.6 Cont. I have moved the API to the same server and disabled crossDomain. I have tried switching the method from GET to post and using setParameter, setFormField, setUserData and none of them seem to reach the server as a GET or POST variable. In

[qooxdoo-devel] Request Question in 0.6.6 Cont.

2007-05-24 Thread Steve Ramage
I have moved the API to the same server and disabled crossDomain. I have tried switching the method from GET to post and using setParameter, setFormField, setUserData and none of them seem to reach the server as a GET or POST variable. In the below code I would like a variable of test and a value

Re: [qooxdoo-devel] Request Question in 0.6.6

2007-05-23 Thread Andreas Junghans
Hi Steve, Am 23.05.2007 um 21:00 schrieb Steve Ramage: > Okay so I've received two responses and I'm not exactly 100% clear > on what > they mean. > > So when you say with cross domain AJAX requests must be in > Javascript code, > does that if I was on the same domain I could use the existing

Re: [qooxdoo-devel] Request Question in 0.6.6

2007-05-23 Thread Steve Ramage
ubject: Re: [qooxdoo-devel] Request Question in 0.6.6 Steve Ramage schrieb: > > We’ve developed an Ajax application with our (read mine) own built > from scratch JS Interface. Needless to say it’s crap and I’m > investigating rewriting the UI portion from scratch with Qooxdoo. Both >

Re: [qooxdoo-devel] Request Question in 0.6.6

2007-05-21 Thread Fabian Jakobs
Steve Ramage schrieb: > > We’ve developed an Ajax application with our (read mine) own built > from scratch JS Interface. Needless to say it’s crap and I’m > investigating rewriting the UI portion from scratch with Qooxdoo. Both > the Application and API are already well defined and work fine, a

Re: [qooxdoo-devel] Request Question in 0.6.6

2007-05-20 Thread Sebastian Werner
It seems that the js file you try to load is erronous. Please double check the resulting (generated) js file. BTW: ScriptTransport only works for JSON/JavaScript files, not for XML files. It seems that you need to disable cross-domain or any option other option which selects this transport impl

[qooxdoo-devel] Request Question in 0.6.6

2007-05-20 Thread Steve Ramage
We've developed an Ajax application with our (read mine) own built from scratch JS Interface. Needless to say it's crap and I'm investigating rewriting the UI portion from scratch with Qooxdoo. Both the Application and API are already well defined and work fine, and it would be preferred if we didn

Re: [qooxdoo-devel] Request as POST ?

2007-03-02 Thread Derrell . Lipman
Cornelius Weiss <[EMAIL PROTECTED]> writes: > this is my code: > btn_save.addEventListener("click", function(e) { > var req = new > qx.io.remote.Request("http://localhost:8887/testproject/";, > qx.net.Http.METHOD_POST, qx.util.Mime.JSON); >req.setParameter('supertruper', 'te

Re: [qooxdoo-devel] Request as POST ?

2007-03-02 Thread Dietrich Streifert
Hi Cornelius, you have to create a URI parameter list by encoding ( via encodeURIComponent ) the parameters and their values and concatenate (with an ampersand inbetween) the result together. The resulting string can then be put in the send data of qx.io.remoteRequest by using the methos setDat

Re: [qooxdoo-devel] Request as POST ?

2007-03-02 Thread Tobias Koller (GERMO GmbH)
Weiss Gesendet: Freitag, 2. März 2007 10:18 An: qooxdoo Development Betreff: [qooxdoo-devel] Request as POST ? Hi list, this is my code: btn_save.addEventListener("click", function(e) { var req = new qx.io.remote.Request("http://localhost:8887/testproject/";, qx.net.

[qooxdoo-devel] Request as POST ?

2007-03-02 Thread Cornelius Weiss
Hi list, this is my code: btn_save.addEventListener("click", function(e) { var req = new qx.io.remote.Request("http://localhost:8887/testproject/";, qx.net.Http.METHOD_POST, qx.util.Mime.JSON); req.setParameter('supertruper', 'test'); req.send(); }, this); B

Re: [qooxdoo-devel] Request applying patch for IE qx.ui.core.ScrollBar bug #123 and qx.ui.table bug #83

2006-08-10 Thread Dietrich Streifert
OK, Thank you. I created another patch which leaves the dimensions of qx.ui.core.ScrollBar as is: http://bugzilla.qooxdoo.org/attachment.cgi?id=31 Til Schneider schrieb: Would someone consider applying the patch http://bugzilla.qooxdoo.org/attachment.cgi?id=30 I wi

Re: [qooxdoo-devel] Request applying patch for IE qx.ui.core.ScrollBar bug #123 and qx.ui.table bug #83

2006-08-10 Thread Til Schneider
> Would someone consider applying the patch > > http://bugzilla.qooxdoo.org/attachment.cgi?id=30 I will apply the patch as soon as the namespaces branch was moved back to trunc. - Using Tomcat but need to do more? N

[qooxdoo-devel] Request applying patch for IE qx.ui.core.ScrollBar bug #123 and qx.ui.table bug #83

2006-08-10 Thread Dietrich Streifert
Hello svn admins, Would someone consider applying the patch http://bugzilla.qooxdoo.org/attachment.cgi?id=30 which solves the scrollbar not scrolling in IE bug reported in http://bugzilla.qooxdoo.org/show_bug.cgi?id=123 which also would solve the scrolling bug of qx.ui.table ht

[qooxdoo-devel] Request for snippets

2006-02-22 Thread Hugh Gibson
As you will have noticed, I've been putting some code snippets in http://qooxdoo.oss.schlund.de/snippets . I've picked these up from the mailing list. You might also think of some other things you could add - please post them! Please make sure it's tested and write instructions which make it