Thank you, I didn't realize "request" was the thing I could modify, it's
so obvious now :). qooxdoo is making everything easier even with its
learning curve.
Greg
On 3/22/10 11:02 AM, Daniel Wagner wrote:
> Hi Greg,
>
> you can pass in a StoreDelegate object[1] as the second constructor
> param
Hello List,
>From what I can tell from the documentation and qooxdoo code, qooxdoo
is simply evaling the json return value of an RPC call. In order to
pass a date from the server to client and have the client
automagically turn it into a javascript date object, we should simply
use "new Date()" a
Hello,
i try to open a new window :
var url = "http://www.test.de";;
var options = {
width: 800,
height: 600,
top: 100,
left: 100,
Thanks Dietrich,
That was one of the first posts I found before joining the list and asking
the question, and the very first fix I tried. Unfortunately none of the
fixes on this thread worked. In fact there were JS errors. I assumed that
that is due to differences between 0.6.2 and 0.6.5.
I got a
Hello Jim Hunter,
but its easyer?
i need to post some data i creaed. When i dont want to create a dynamic
form to transfer the data i better use the qooxdoo request. I get the
data and now i have the source of my pdf, html,css,.. export and now i
want to show it but i dont find any easy metho
Hi Derell
Thank you _very_ much for your help (again)!
Finally i could make it work.
Sometimes it's a little bit confusing for me to look up the needed thinks in
api.
Now the problem was that I setFocusedCell() on the scrollerPane but is
should be set on the table itself.
So the winner is...
- sn
Hi Greg,
you can pass in a StoreDelegate object[1] as the second constructor
parameter of qx.data.store.Json:
var delegate = {
configureRequest : function(request) {
request.setTimeout(15000);
}
}
var store = new qx.data.store.Json(url, delegate)
> Back in the day, we had a number of significant problems arise when
> subclasses, unaware that some deep-up-the-hierarchy superclass was depending
> on a protected variable name, would use that same variable name and break
> things without any indication of why things got broken. It is therefore
Don't use qooxdoo to do it. Simply use JavaScript to create the window and
set the source of the window to be whatever you want to display.
On Mon, Mar 22, 2010 at 3:54 AM, smisonl...@googlemail.com <
smisonl...@googlemail.com> wrote:
> Hello,
>
> i get data like pdf documentdata, csvdata, ht
Hi,
How does one set the timeout for requesting qx.data.store.Json store
from the remote server?
Thanks,
Greg
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
pr
On Mon, Mar 22, 2010 at 10:57, Peter Schneider wrote:
> Hi there,
>
> is there any reason why 'generate lint' doesn't like protected members?
> I always get something like this
>
>
> D:\psv3\infoDesk20\frontend\source/class\infodesk\ui\test\WinTable.js
> (52,1):
> Protected data field in 'this._ta
On Mon, Mar 22, 2010 at 09:51, danovics wrote:
>
> I've found the way to activate the pane:
> table.getPaneScroller(0).getTablePane().activate().
>
> Although I "copied" the situation after clicking on a table row i.e. the
> table is focused and the table.pane is activated I cannot navigate with
Hi there,
is there any reason why 'generate lint' doesn't like protected members?
I always get something like this
D:\psv3\infoDesk20\frontend\source/class\infodesk\ui\test\WinTable.js (52,1):
Protected data field in 'this._table'. Protected data fields are deprecated.
Better use private fields
Hi Pascal,
this can't work because Interface implementation is checked before an
object is created. So you can either move the "implement" key to Konkr,
or you can keep it in Abstr and add a method m1 that throws an error
like "Abstract method call". That's how it's done in the framework classe
On Mon, Mar 22, 2010 at 10:04, Pascal Chorus wrote:
> Hi all,
>
> I detected a problem when defining a class hierarchy containing an
> interface and multiple abstract classes.
> In the attachment, you find the sourcecode referring to what I am
> describing here.
>
> I defined the following hierar
Hello Moritz,
I'm not sure if this helps, but setting the selections in a SelectBox is easy
once you've understand that 'model' can be a single value, too.
Try this: http://bit.ly/dycqBU
If this doesn't help at all, ignore it ;)
To be honest, I've not read both quoted threads complete...
/Peter
I've found the way to activate the pane:
table.getPaneScroller(0).getTablePane().activate().
Although I "copied" the situation after clicking on a table row i.e. the
table is focused and the table.pane is activated I cannot navigate with
cursor keys in my table.
Now I'm really at a loss :(
--
V
On Mon, Mar 22, 2010 at 09:22, danovics wrote:
>
> My goal is not to set the focus on a cell, but to have the possibility to
> give to a table (or table's subclass) the focus or activation the way that
> after that the user could jump between the table's rows using his
> keyboard's
> up and down
Hello Jonathan
First of all thanks for your answer.
But it seems it hasn't solved my problem.
Maybe you've misunderstood me.
My goal is not to set the focus on a cell, but to have the possibility to
give to a table (or table's subclass) the focus or activation the way that
after that the user co
Hello again,
So I'm having the following problem with qooxdoo list controller: I've
got a list of items in a model and I want them to be editable. Each
item in the model has a set of properties, for example name and
description. I display the items using a qooxdoo qx.ui.form.List class
to display
Hello danovics,
to set the focused cell on a table, use setFocusedCell()[1] on the pane
scroller.
Simplest example:
var pane = table.getPaneScroller(0);
pane.setFocusedCell(0,0);
[1]
http://demo.qooxdoo.org/current/apiviewer/#qx.ui.table.pane.Scroller~setFocusedCell
Cheers
Jonathan
-
Hi all,
I found the following older threads :
http://www.mail-archive.com/qooxdoo-devel@lists.sourceforge.net/msg02778.html
http://www.mail-archive.com/qooxdoo-devel@lists.sourceforge.net/msg03414.html
Did someone have a solution to use this function in 1.0.1 ?
getSelectedIndex() , setSele
Hi,
by output do you mean the server's response? You get that from the
Response object:
http://demo.qooxdoo.org/current/apiviewer/index.html#qx.io.remote.Response~getContent
Do you mean a qooxdoo window or a browser window?
Regards,
Daniel
smisonl...@googlemail.com schrieb:
> Hello,
>
> i wa
Hello,
i get data like pdf documentdata, csvdata, html data.
ow i want to push it into a new browserwindow. to show the pdf,htm,...
document. How can i do that in qooxdoo?
--
Download Intel® Parallel Studio Eval
Try
Hello,
i want to send post data and redirect the output to a new window. I dot
find any option in the request documentation to do that. Is ths
possible and hw?
Thanks for answer
--
Download Intel® Parallel Studio Eval
I wonder how could I give the focus to a table that after that I could change
the selected table row with up and down cursors?
Now if I have table.focus() I still have to click inside the table to achive
that.
Thanks
--
View this message in context:
http://n2.nabble.com/table-focus-question-tp47
Hi Thorsten,
the "canonical" way to manipulate the resource path at runtime is to
build your application with a generator job that sets the
"decode-uris-plug" key[1]. The value is the path of a file that contains
a snippet of JavaScript code which will be merged into the loader script
at build
Hi Daniel,
No, I didn't tried with the -v option. However, I finally found the file
that wasn't UTF-8 encoded meanwhile :-).
Thanks for the bug report.
Best,
Benoît.
--
View this message in context:
http://n2.nabble.com/lacks-of-hints-for-not-UTF-8-charset-encoded-files-in-the-generator-py-
Hi Benoît,
this is a bug in the generator, it should definitely print which files
contain illegal characters. I've opened a report for it:
http://bugzilla.qooxdoo.org/show_bug.cgi?id=3532
In the meantime, have you tried running the generator with the -v
option? That might tell you more about wh
Hi Alex,
thank you for your help. "autocompletion" did change the behavior!
It is much easier when you know the name of a feature ;)
I now added both attributes ("name" _and_ "autocompletion"; just in case) and
see that the browser is displaying a list of last entered values.
So I think I don't n
Hi Aaron,
maybe this thread may give you a hint:
http://n2.nabble.com/Qooxdoo-0-5-6-and-qooxdoo-0-7-x-not-working-with-Firefox-3-6-td4454353.html
Charles Salmon (message 3 in thread) may have some hints for you as he
maintains a qooxdoo 0.6.5 app.
Regards
Am 21.03.2010 21:31, schrieb Aa
31 matches
Mail list logo