Re: [qooxdoo-devel] Loading Table from local JSON File

2010-01-24 Thread MartinWittemann
Hello, currently, the Table widget does not support data binding. (But we are working on it Bug 3171 [1]) So using the classes from the qx.data namespace will not help you out in that case. If you are still interested in the data binding, take a look at an introduction presentation [2] I once did.

Re: [qooxdoo-devel] Howto configure " generate.py" in Eclipse External Tools?

2010-01-24 Thread t_s
Hello Hansjoerg, maybe this helps you, as it works fine for me (Eclipse Version: 3.5.1): In "Run - External Tools - External Tools Configuration": Name: generate source Location: ${system_path:/Python26/python26.exe} Working Directory: ${workspace_loc}/${project_path} Arguments: ${workspace_loc

[qooxdoo-devel] Loading Table from local JSON File

2010-01-24 Thread ndm
What is the simplest way to dynamically load a table from a local JSON file? I have struggled for hours to do this without any luck and would appreciate some insight. Below is a sample that works when referencing an embedded javascript array object (data): qx.Class.define("iveware.Application",

Re: [qooxdoo-devel] Best way to filter a tree?

2010-01-24 Thread MartinWittemann
hI Andrew, be sure I take a look at it and we will include filtering on the tree. But I currently can't tell you when because we need to finish our roadmap for 2010. After that, I will see when another block of data binding work is scheduled. Best, Martin -- View this message in context: http://

Re: [qooxdoo-devel] Best way to filter a tree?

2010-01-24 Thread Andrew Smith
If you take a look at http://bugzilla.qooxdoo.org/show_bug.cgi?id=2373 you can see that I've supplied a patch to implement this behavior for Tree widgets. Not sure when/if this will ever get taken upstream. When I wrote this last summer I think there were still questions surrounding data binding

Re: [qooxdoo-devel] Sikuli

2010-01-24 Thread Derrell Lipman
On Sun, Jan 24, 2010 at 22:01, Dan wrote: > I just found an interesting project from MIT. It's called Sikuli and it > lets you automate GUI actions very easily. It seems to me it would be a very > nice way to test a qooxdoo app. > > A demo is available here: http://sikuli.csail.mit.edu/demo.shtml

[qooxdoo-devel] Sikuli

2010-01-24 Thread Dan
I just found an interesting project from MIT. It's called Sikuli and it lets you automate GUI actions very easily. It seems to me it would be a very nice way to test a qooxdoo app. A demo is available here: http://sikuli.csail.mit.edu/demo.shtml And more info on unit testing is found here: http://

Re: [qooxdoo-devel] Global vars?

2010-01-24 Thread Stefan Meyer
Hello Derrell Lipman, i think the real problem s another. I got always the error Fehler: this.removeOldContent is not a function Quelldatei: http://127.0.0.1/qooxdoo/mb/source/class/mb/system/Modules.js Zeile: 19 but i call it from the same class and the functio is really there and at the fi

Re: [qooxdoo-devel] [english 100%] Re: Global vars?

2010-01-24 Thread Stefan Meyer
Hello, thank you, but i think that wasnt the problem. I call a call and dont get access to the subfunctions in the same class. See my code in the last mail > > > On Sun, Jan 24, 2010 at 06:30, Stefan Meyer > wrote: > > Hello Derrell Lipman, > > anotehr ques

Re: [qooxdoo-devel] Global vars?

2010-01-24 Thread Derrell Lipman
On Sun, Jan 24, 2010 at 06:30, Stefan Meyer wrote: > Hello Derrell Lipman, > > anotehr question. How do realize vars that you can access from all > qoodoo classes? > Declare the variables in your Application class: qx.Class.define("custom.Application", { extend : qx.application.Standalone,

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re: [english100%] Re: [english100%] Re:Howfuturesave?

2010-01-24 Thread Stefan Meyer
Hello, thank you but that dosent solve the problem. The problem isnt , that he dont find the class He dosent finde the other functiom removeOldCotent in the same class. > The difference in your code to the way I would have done it is that I > use the #require(path/javascriptfile.js) to incl

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re: [english100%] Re:Howfuturesave?

2010-01-24 Thread Jim Hunter
The difference in your code to the way I would have done it is that I use the #require(path/javascriptfile.js) to include other JavaScript files. I have never used #asset.I think the problem is that using #asset, the code does not get compiled into your app and that is why you can't find it later.

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re: [english100%] Re:Howfuturesave?

2010-01-24 Thread Stefan Meyer
Hello ok, i think that could be to much in an email. Here the 3-4 files that i need. the problem is when i try to load another modul via the mainmenu. the first load via application.js is no problem application.js containerMain = ""; containerTop = ""; containerMiddle = ""; containerBottom =

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re:Howfuturesave?

2010-01-24 Thread Jim Hunter
When you remove code and put in we can't tell where your error is. You need to show it all in order for anyone to know what the problem is. For all we know you have bad code in the section that you removed. On Sun, Jan 24, 2010 at 11:59 AM, Stefan Meyer wrote: > Hello, > > i think thei

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re:Howfuturesave?

2010-01-24 Thread Stefan Meyer
Hello, i think their must be another problem. When i call it from application.js the class runs 100$ but when i call it from the menu class he cant access his own member functions. qx.Class.define("makebiz.system.Modules", { extend: qx.core.Object, members : {

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re:Howfuturesave?

2010-01-24 Thread Stefan Meyer
where should i create it ? outside application,..? > > > var d = new makebiz.system.Global; > d.ContainerMain = "ddd" ; > alert( d.ContainerMain) > -- Throughout its 18-year history, RSA Conference consistently attracts t

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: Howfuturesave?

2010-01-24 Thread Jim Hunter
When you define a new class, it must inherit from another class. For this use, I suggest using qx.core.Object. Here is a basic example of how it would then be used (this will run in the Playground if you want to test it): qx.Class.define("makebiz.system.Global", { extend: qx.core.Object,

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: [english 100%] Re: Howfuturesave?

2010-01-24 Thread Stefan Meyer
Hello Jim Hunter i use the Application.js created from qooxdoo and create some new folders below it and add files like mainmenu.js system.js modules.js and so on. In this files are new classes like this: qx.Class.define("mb.system.Modules", { extend : qx.application.Standalone,

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: Howfuturesave?

2010-01-24 Thread Stefan Meyer
Hello, i create a class: qx.Class.define("makebiz.system.Global", { members : { containerMain : "", containerTop : "", containerMiddle : "", containerBottom : "", classSystemModules : "" } });

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: How futuresave?

2010-01-24 Thread Jim Hunter
have a couple of question that I don't think have been asked that might help clarify a few things: 1) Is your application in one HTML file or do you have many that you load and you are expecting a global var to be accessable from all of the HTML files? 2) What is your level of understanding of Ja

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] Re: How futuresave?

2010-01-24 Thread Stefan Meyer
Hello, isnt their any standard global ic an use? Is their any eample on the web? I try so many thinks. and nothing really works. How do other realize to create an element and access ist from another class? > If there are too many questions asked in a day, IE:jquery newsgroup, > most of them

Re: [qooxdoo-devel] get access to var?

2010-01-24 Thread Stefan Meyer
Hello, i try now something . This is the actual version but now i get an error at this line mb.Application.containerMain.add(containerLayout); chil.getparent is not afunction i dont know what i should do. i try and try 2 days:( the full code /*

Re: [qooxdoo-devel] [english 100%] Re: How futuresave?

2010-01-24 Thread Jim Hunter
If there are too many questions asked in a day, IE:jquery newsgroup, most of them are going to go unanswered. It is very rare that a question posted to this group goes unanswered. It is usually answered by more then one person giving you more then one way to achieve your desired results. One answe

Re: [qooxdoo-devel] [english 95%] Re: get access to var?

2010-01-24 Thread Stefan Meyer
Hi Dabiel, thanks. Have you an eample? > Hi Stefan > > You can define the var as a static var. > So you can call it with the full path: mb.Application.classSystemModules > > Daniel > > Am 24.01.2010 13:53, schrieb Stefan Meyer: >> Hello, >> i define a gloal var at top of the application.js >> >>

Re: [qooxdoo-devel] get access to var?

2010-01-24 Thread Daniel Lenggenhager
Hi Stefan You can define the var as a static var. So you can call it with the full path: mb.Application.classSystemModules Daniel Am 24.01.2010 13:53, schrieb Stefan Meyer: Hello, i define a gloal var at top of the application.js var classSystemModules; and set it in the application.js cl

[qooxdoo-devel] get access to var?

2010-01-24 Thread Stefan Meyer
Hello, i define a gloal var at top of the application.js var classSystemModules; and set it in the application.js classSystemModules = new mb.system.Modules; classSystemModules.getHome(); but how can i access it fro another casss like tis? qx.Class.define("mb.system.MainMenu", { exte

Re: [qooxdoo-devel] Global vars?

2010-01-24 Thread Stefan Meyer
Hello Derrell Lipman, anotehr question. How do realize vars that you can access from all qoodoo classes? > On Sat, Jan 23, 2010 at 19:43, Stefan Meyer > wrote: > > I search the whole day but i cant find anytjing about set a global > variable on qooxdoo. W

Re: [qooxdoo-devel] [english 100%] Re: Global vars?

2010-01-24 Thread Stefan Meyer
Hello, i think , i need it onlyin qodoo and subclasses from qoodoo i created. . i get some errors when i compile the source-all like this Resolving Dependencies -! Uknown global symbol referenced: containerMidle (mb.system.Modules:21) and so on.:( the sourca-all works fine but when i compil

Re: [qooxdoo-devel] [english 100%] Re: How futuresave?

2010-01-24 Thread Petr Kobalíček
Hi Stefan, jquery is simple library for simple programmers (if here is anyone using this lib then sorry:)), you should compare community around similar projects like qooxdoo - for example ExtJS, SmartClient, DoJo. BTW: I need the spell-checker too! -- Best regards - Petr Kobalicek

Re: [qooxdoo-devel] Search Engine optimization

2010-01-24 Thread Petr Kobalíček
It depends on the context of your app. I don't know if it's possible to optimize qooxdoo application for search engines, it's like any other framework and javascript code. I think that you should decide if the qooxdoo is the right tool for you, it's gui toolkit for single-page web applications not