Re: [qooxdoo-devel] Newbie question, calling this.debug() from my function.

2014-02-27 Thread Keve Nagy
> To be able to access parent scope you are able to do like this: (just declare > a local variable in the function which includes your function) > > var that = this; > var myDebug = function(p_myString) { > that.debug(p_myString); > return true; > }; > > Or if you want to change th

Re: [qooxdoo-devel] Newbie question, calling this.debug() from my function.

2014-02-27 Thread Keve Nagy
> "this" keyword has different meaning in different points of the script: they > say it "depends on context". this.debug() will work only where "this" refers > to an instance of qx.core.Object or derived class, or any class that > includes qx.core.MLogging mixin. > Explore what is "this" (by call

Re: [qooxdoo-devel] Newbie question, calling this.debug() from my function.

2014-02-27 Thread Mustafa Sak
.@yandex.ru] Gesendet: Donnerstag, 27. Februar 2014 07:36 An: qooxdoo-devel@lists.sourceforge.net Betreff: Re: [qooxdoo-devel] Newbie question, calling this.debug() from my function. "this" keyword has different meaning in different points of the script: they say it "depends on cont

Re: [qooxdoo-devel] Newbie question, calling this.debug() from my function.

2014-02-26 Thread alexey.zakharenkov
"this" keyword has different meaning in different points of the script: they say it "depends on context". this.debug() will work only where "this" refers to an instance of qx.core.Object or derived class, or any class that includes qx.core.MLogging mixin. Explore what is "this" (by calling alert(th

Re: [qooxdoo-devel] Newbie question modified Twitter example

2011-11-04 Thread Tristan Koch
Any hints in the log with IO debugging enabled? Am 03.11.2011 um 20:40 schrieb Gregory H.: > hi thx for the repy.. i tried both json and jsonp by modifying my couch view > to return data wrapped in the callback, but no joy either way.. ---

Re: [qooxdoo-devel] Newbie question modified Twitter example

2011-11-03 Thread Gregory H .
hi thx for the repy.. i tried both json and jsonp by modifying my couch view to return data wrapped in the callback, but no joy either way.. > From: tristan.k...@1und1.de > To: qooxdoo-devel@lists.sourceforge.net > Date: Wed, 2 Nov 2011 10:58:11 +0100 > Subject: Re: [qooxdoo-d

Re: [qooxdoo-devel] Newbie question modified Twitter example

2011-11-02 Thread Tristan Koch
Hi, good idea to learn by customizing. In twitter.TwitterService, did you switch from qx.data.store.Jsonp to qx.data.store.Json (without the p)? AFAIK, CouchDB does not provide a JSONP service. By appending "?qxenv:qx.debug.io:true" to the URL of your application, you get helpful logs of all

Re: [qooxdoo-devel] Newbie Debugging Questions

2011-09-25 Thread Martin Wittemann
Hi, Is it possible to view the actual data in a store in FireBug or Chrome? Is so where do I find it as I have been looking around in Firebug and I can see the store's model but not the actual data? Sure, the models are plain qooxdoo objects which can be debugged in every debugger. We have a demo

Re: [qooxdoo-devel] Newbie question: extending a core application, what's the right way ?

2011-09-08 Thread Alexander Steitz
Hi Loïc, On Tuesday 06 September 2011 20:48:12 y...@free.fr wrote: > Could you give me some clues for there are some better solutions, but they > are not "out of the box" solutions What kind of solution ? It seems to me > important not having to declare the plugin/part in the main application >

Re: [qooxdoo-devel] Newbie question: extending a core application, what's the right way ?

2011-09-06 Thread y...@free.fr
Hi Tino, Thank you for your answer, that matches my needs, and indeed I tried to post quite the same post a few weeks ago, but it seemed to me that my post was not taken into account because of a mistake I probably made in the subscription process. Could you give me some clues for /there are som

Re: [qooxdoo-devel] Newbie question: extending a core application, what's the right way ?

2011-09-06 Thread Tino Butz
Hi, I guess you have asked this question already before, right? Anyway: You want to have a kind of a plugin system? So you have a qooxdoo application and developers can write small widgets as a plugin for it? Have a look on the qooxdoo part system: http://manual.qooxdoo.org/1.5.x/pages/develo

Re: [qooxdoo-devel] Newbie question: letting users extending a qooxdoo app

2011-08-30 Thread Greg Hellings
On Tue, Aug 30, 2011 at 10:47 AM, Tino Butz wrote: > Hi Jean-Baptiste, > > It is still not decided which license and where. It will probably be > SourceForge but GoogleCode is a serious candidate too (other choice ?). > > github.com is currently the "state of the art". github.com is also nice if

Re: [qooxdoo-devel] Newbie question: letting users extending a qooxdoo app

2011-08-30 Thread Tino Butz
Hi Jean-Baptiste, It is still not decided which license and where. It will probably be SourceForge but GoogleCode is a serious candidate too (other choice ?). github.com is currently the "state of the art". Contact me directly and I'll give you an access to our business spec

Re: [qooxdoo-devel] Newbie question: letting users extending a qooxdoo app

2011-08-30 Thread Jean-Baptiste BRIAUD -- Novlog
Hi Tino, During the last 4 years, we worked hard on R&D and had some projects with customers involving the technology. We are now in the process of open sourcing the project. It is a question of weeks but I don't have precise date to give. It is still not decided which license and where. It will

Re: [qooxdoo-devel] Newbie question: letting users extending a qooxdoo app

2011-08-30 Thread Tino Butz
Hi Jean, Thanks for sharing this. Sounds pretty nice what you are doing with qooxdoo! Are there any public real life examples available? Tino Am 29.08.2011 um 22:09 schrieb Jean-Baptiste BRIAUD -- Novlog: Hi Loic, I'm not sure if our approach could fit your needs. Here is what we're doing :

Re: [qooxdoo-devel] Newbie question: letting users extending a qooxdoo app

2011-08-29 Thread Jean-Baptiste BRIAUD -- Novlog
Hi Loic, I'm not sure if our approach could fit your needs. Here is what we're doing : I had invented a new IT language based on UML use case. UML is here for the concept as it is a textual language, so nothing to do with UML graphical representation. >From this input, we can define an "busines

Re: [qooxdoo-devel] Newbie question: letting users extending a qooxdoo app

2011-08-29 Thread thron7
Loïc, On 08/28/2011 07:18 PM, y...@free.fr wrote: > Hello, > I'am wondering if qooxdoo could answer some of my office needs: we developp > web applications and want to create a basis made of certain > functionnalities, and need third-party developpers to have the ability to > integrate their "pl

Re: [qooxdoo-devel] Newbie question about databinding

2011-04-18 Thread Marco Pas
I feel so stupid.. it's to easy when you get the solution.. Thanks! -- Marco Pas On Monday, April 18, 2011 at 7:30 PM, Piotr Pietrzak wrote: > Hi Marco, > > > This works ok for a JSONP provider that returns a flat array as such: > > [{"key1": "value"},{"key2": "value"}, {"key3": "value"}] > >

Re: [qooxdoo-devel] Newbie question about databinding

2011-04-18 Thread Piotr Pietrzak
Hi Marco, > This works ok for a JSONP provider that returns a flat array as such: > [{"key1": "value"},{"key2": "value"}, {"key3": "value"}] > When trying another JSONP suppliers i get data back in the format like: > ["items":[{'key1":"value"},{"key2": "value"}, {"key3": "value"}] Just use dot-se

Re: [qooxdoo-devel] Newbie Question : Qooxdoo suitable for regular website ?

2010-02-10 Thread Fritz Zaucker
We "evaluated" various CMS-Systems recently and like www.silverstripe.org the most ... (depends on your requirements, of course). Cheers, Fritz On Wed, 10 Feb 2010, Sebastien PASTOR wrote: > Thanks to you both for your quick replies. Makes sense > I guess i ll have to look to more "tradition

Re: [qooxdoo-devel] Newbie Question : Qooxdoo suitable for regular website ?

2010-02-10 Thread MartinWittemann
Hello Seb and welcome to qooxdoo, did you see the real-life examples page in the wiki [1]. There are a couple applications linked, but as far as I have seen mostly full blown RIAs. As you might guess from the amount of RIAs in the examples, qooxdoo's is traditionally used to build such huge singl

Re: [qooxdoo-devel] Newbie Question : Qooxdoo suitable for regular website ?

2010-02-10 Thread Sebastien PASTOR
Thanks to you both for your quick replies. Makes sense I guess i ll have to look to more "traditionnal" frameworks. :(, till i have a truly "web app" to develop ! Thanks again! Sebastien. On Wed, Feb 10, 2010 at 01:58:01AM -0800, benco wrote: > > Hi Sebastien, > > As Peter mentioned, trad

Re: [qooxdoo-devel] Newbie Question : Qooxdoo suitable for regular website ?

2010-02-10 Thread benco
Hi Sebastien, As Peter mentioned, traditional websites have usually other requirements... In terms of SEO, it won't be good at all because all is javascript based (except if your pages require user login. In that last case, search engines won't even see these pages). However you could use nati

Re: [qooxdoo-devel] Newbie Question : Qooxdoo suitable for regular website ?

2010-02-10 Thread Petr Kobalíček
Hi, I think that qooxdoo is more suitable for single-page webapps. Traditional websites have different requirements (accessibility, loading speed/size, templates, etc...) -- Best regards - Petr Kobalicek On Wed, Feb 10, 2010 at 11:38 AM, Sebastien PASTOR wrote: > Hi ever

Re: [qooxdoo-devel] Newbie question Table border, SelectionMode ??

2010-01-07 Thread Fritz Zaucker
Hi, I use something like this for table decoration: var table = new qx.ui.table.Table(tableModel).set({ decorator : new qx.ui.decoration.Single().set({ color : [ '#000', '#000', '#000', '#000' ], width : [ 1, 1, 1, 1 ],

Re: [qooxdoo-devel] Newbie question Table border, SelectionMode ??

2010-01-07 Thread Loïc Bresson -- Novlog
Qoodary wrote: > Hello Loïc, > > thank you for your help. > > << renderer > into 1.0 and 0.8 documentation. Maybe this is old stuff from older versions > (you said you were reading examples from 0.6 or 0.7). What are you trying to > achieve ? > > Yes this came from an older tutorial which use

Re: [qooxdoo-devel] Newbie question Table border, SelectionMode ??

2010-01-07 Thread Qoodary
Hello Loïc, thank you for your help. <<>> Yes this came from an older tutorial which uses version 0.6 or 0.7 set({ border:qx.renderer.border.BorderPresets.getInstance().thinInset }); I assume this was in older versions for setting a table border? I can nothing find about "BorderPresets" or "

Re: [qooxdoo-devel] Newbie question Table border, SelectionMode ??

2010-01-07 Thread Loïc Bresson -- Novlog
Qoodary wrote: > Hi list, > > I am very new to Qooxdoo. I work with Qooxdoo 1.0 Hi and welcome to qooxdoo :) > So my questions are: > 1. Where can I find informations about table border in version 1.0? > 2. What is wrong with > set({ border:qx.renderer.border.BorderPresets.getInstance().thinIns

Re: [qooxdoo-devel] Newbie doubts

2008-06-30 Thread asaris
In most cases I would recommend to use setUserData() to add reference to other objects or values for TreeFolder&TreeFile. As usually functionality is encapsulated in referenced/other objects. Why are there TreeFolders & TreeFiles? You can use only TreeFolders, if you want. They both provides d

Re: [qooxdoo-devel] Newbie doubts

2008-06-30 Thread petr kobalicek
There is interesting point for me that I'm also not understand in qooxdoo about Folder and File items for treeview. I thing that it's correct that there should be only one item, but there can be for example empty directories, so the way is probabbly always about extending existing types. But I hav

Re: [qooxdoo-devel] Newbie doubts

2008-06-04 Thread Jonathan Rass
Hi Guilherme! >> "make something" Generally, you can start using qooxdoo just with the quickstart example, but you are missing some (if not all) images. We will generate a new version of quickstart within the next release of 0.8 that includes more images. I am not sure if you can change the pat

Re: [qooxdoo-devel] Newbie

2007-04-12 Thread Derrell . Lipman
Jonis <[EMAIL PROTECTED]> writes: > Where can i find source code for RPC test? > > I can't find in my packages (RPC Backend, SDK, etc...) just the service > (not the 'client'). The backend, which runs on the server and handles remote procedure calls issued by the client (javascript) application

Re: [qooxdoo-devel] Newbie

2007-04-12 Thread Jonis
Sorry for a lot of posts :( Where can i find source code for RPC test? I can't find in my packages (RPC Backend, SDK, etc...) just the service (not the 'client'). Thanks Leander Hanwald escreveu: > Hi Jonis, > > you could use the new backend of qooxdoo which contains examples in java > and p

Re: [qooxdoo-devel] Newbie

2007-04-12 Thread dperez
Hi Andreas, I like the enhanced API viewer. Maybe it would be nice to show some properties attributes like "The property value can be set using appearances" with an icon (and an associated tooltip to show its meaning to novices), rather than with text. In this way, it could be more easily seen a

Re: [qooxdoo-devel] Newbie

2007-04-12 Thread Andreas Ecker
Hi Jonis, welcome to qooxdoo! ;-) On Wed, 2007-04-11 at 17:35 -0700, Jim Hunter wrote: > In the API Viewer, there is a list of Properties. All Properties have > setters and getters. So look for Value in the Property list to get a > description of it. The use of Value in your code would be setVal

Re: [qooxdoo-devel] Newbie

2007-04-11 Thread Jim Hunter
In the API Viewer, there is a list of Properties. All Properties have setters and getters. So look for Value in the Property list to get a description of it. The use of Value in your code would be setValue() and getValue(). Good examples are things like Width and Height. That is how they are liste

Re: [qooxdoo-devel] Newbie

2007-04-11 Thread Jonis
Thank you!! By now, iam just trying to build my interface. I have one more question: where can i find full methods and properties list? In API Viewer i can't find all methods and properties... for example: TextField have "setValue" method but i can't find on API Viewer. (ex: CurrentInput.setVal

Re: [qooxdoo-devel] Newbie

2007-04-11 Thread Leander Hanwald
Hi Jonis, you could use the new backend of qooxdoo which contains examples in java and php how to write a qooxdoo <-> php interface (http://qooxdoo.org/download: Install a Powerful RPC Backend) There are also examples for this in the showcase: http://demo.qooxdoo.org/current/sample/html/test/RPC_1

Re: [qooxdoo-devel] newbie question about iterator the tree nodes element

2007-02-27 Thread dperez
Thanks for your interest. When I have time, I will create a ticket in Bugzilla, or even solve the bug myself. Derrell.Lipman wrote: > > dperez <[EMAIL PROTECTED]> writes: > >> I use this code to delete an TreeFile from a treefullcontrol.Tree: >> >> var ele = myTree.getManager().getSelecte

Re: [qooxdoo-devel] newbie question about iterator the tree nodes element

2007-02-26 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > I use this code to delete an TreeFile from a treefullcontrol.Tree: > > var ele = myTree.getManager().getSelectedItems()[0]; > if (ele) { > ele.disconnect(); > ele.getParent().remove(ele); > ele.dispose(); >

Re: [qooxdoo-devel] newbie question about iterator the tree nodes element

2007-02-26 Thread dperez
Hi all, I use this code to delete an TreeFile from a treefullcontrol.Tree: var ele = myTree.getManager().getSelectedItems()[0]; if (ele) { ele.disconnect(); ele.getParent().remove(ele); ele.dispose(); } It works ok, but I r

Re: [qooxdoo-devel] Newbie : A Question on windows appearance...

2006-11-16 Thread Hugh Gibson
> Maybe designer of the UI want to make windows look similar to Ms > windows. > > But it is not so interesting to me, I want to make it to more stylish > window like yahoo or bakbase. > > I briefly browse appearance part in the qooxdoo document. But it does > not seems to be done what I want t

Re: [qooxdoo-devel] Newbie question: What is qx.OO?

2006-10-17 Thread Peter Volkov (pva)
On 2006-10-17 at 02:29 -0700, dperez wrote: > I think this is documented. Read the doc first Oh. You are right. I though, that I already skimed through all documentation and tried to search site with qx.OO and did not find occurrences of this qx.OO. Well. Searching on defineClass gave me resu

Re: [qooxdoo-devel] Newbie question: What is qx.OO?

2006-10-17 Thread Sebastian Werner
Maybe this is helpful: http://qooxdoo.org/documentation/user_manual/defining_own_classes Cheers, Sebastian dperez schrieb: > I think this is documented. Read the doc first > > > Peter Volkov (pva) wrote: >> Hello list. >> >> I've started investigation of qooxdoo but the lack of documentat

Re: [qooxdoo-devel] Newbie question: What is qx.OO?

2006-10-17 Thread dperez
I think this is documented. Read the doc first Peter Volkov (pva) wrote: > > Hello list. > > I've started investigation of qooxdoo but the lack of documentation I > need some pointers where should I start with? > > Or more specific questions. What is qx.OO.defineClass (where is > documen

Re: [qooxdoo-devel] newbie question about iterator the tree nodes element

2006-10-17 Thread Alex D.
Hi Edmond, somehow i don't know any one-code-line-way to do this. You will have to write recursive function to iterate through the tree(like any other tree too). Folders(and files) have getItems() method. By folder you become an array with all visible children. So if the folder is closed you'll

Re: [qooxdoo-devel] newbie question about iterator the tree nodes element

2006-10-17 Thread dperez
Given the nature of trees, a simple recursive algorithm will do the job. Edmond Lee wrote: > > Hi,folks > > Can anyone tell me how can I iterator the treenodes(treefiles or > treefolders) in the tree/treefullcontrol compoments? > > Thks > Edmond Lee > > --

Re: [qooxdoo-devel] Newbie question about Qx 0.6 build system

2006-09-21 Thread Simon Bull
Jim Hunter epiuniverse.com> writes: > > > To start with, Javascript doesn't know anything about your file system, and by definition, it can't. You have to declare everything in Javascript. I suggest looking through the source code to see how it's done in qooxdoo. The qooxdoo classes don't get t

Re: [qooxdoo-devel] Newbie question about Qx 0.6 build system

2006-09-19 Thread Sebastian Werner
There is a difference between these: find your files and include your files. Please be sure that your files are really included. Have you also modified the Makefile accordingly? Please double-check all the documentation pages. Cheers, Sebastian Simon Bull schrieb: > Hi All, > > I'm looking

Re: [qooxdoo-devel] Newbie question about Qx 0.6 build system

2006-09-19 Thread Simon Bull
Hi Jim,Yes I had already figured that much out.  I couldn't understand how the js runtime could be complaining about part of the name of a js class.It turns out that I had tried to define a "static" constant before defining the constructor in my file.I.e., with the namespaces version of Qx you now

Re: [qooxdoo-devel] Newbie question about Qx 0.6 build system

2006-09-19 Thread Jim Hunter
To start with, _javascript_ doesn't know anything about your file system, and by definition, it can't. You have to declare everything in _javascript_. I suggest looking through the source code to see how it's done in qooxdoo. The qooxdoo classes don't get their name from the folders they are in, th

Re: [qooxdoo-devel] Newbie Question

2006-09-12 Thread dperez
Hi, What I do is that I have an XML format that defines my forms, and I translate it into JSON, that it is interpreted by Javascript code. This code uses qooxdoo. HTH David John Comerford wrote: > > Hi Folks, > > I am new to qooxdoo but so far it looks great. What I was thinking of > doing

Re: [qooxdoo-devel] Newbie Question

2006-09-10 Thread Derrell . Lipman
John Comerford <[EMAIL PROTECTED]> writes: > Hi Folks, > > I am new to qooxdoo but so far it looks great. What I was thinking of > doing is writing a JS code that will process passed XML documents and > create all widgets from them, rather than have individual JS scripts to > do the various sc

Re: [qooxdoo-devel] Newbie Question: How do you set the row height in a QxListView

2006-07-29 Thread 鹏举马
I call the private property _rowHeight of ListViewPanelike this:lv.getPane()._rowHeight = 30;2006/7/28, Michael Wilson <[EMAIL PROTECTED] >:Answered my own question but it causes another issue usingQxListViewPane.setRowHeight ().  After setting the click/focus events arehappening as if the height w

Re: [qooxdoo-devel] Newbie Question: How do you set the row height in a QxListView?

2006-07-28 Thread Til Schneider
> I'm trying to show some thumbnails inside of iconHtml defined columns in > a QxListView. The 47 px high images are being cropped by the next line > of the table. How do you adjust the row height (for the entire table I > assume)? Same thing as the header height: This is currently hard coded an

Re: [qooxdoo-devel] Newbie Question: How do you set the row height in a QxListView?

2006-07-27 Thread Til Schneider
> I'm trying to show some thumbnails inside of iconHtml defined columns in > a QxListView. The 47 px high images are being cropped by the next line > of the table. How do you adjust the row height (for the entire table I > assume)? Same thing as the header height: This is currently hard coded an

Re: [qooxdoo-devel] Newbie Question: How do you set the row height in a QxListView?

2006-07-27 Thread Michael Wilson
Answered my own question but it causes another issue using QxListViewPane.setRowHeight(). After setting the click/focus events are happening as if the height was still 16 px high. Because my table is now "taller" if I click on the 2nd item in the ListView it actually focuses the 4th. So I gues

Re: [qooxdoo-devel] Newbie: Specialized QxIframe Object

2006-01-26 Thread Sebastian Werner
Philip Hetjens schrieb: Hello, I want to create a new Object (for example I will call it “QxAbc”). This object has to be derived from QxIframe. I wrote the following code: function QxAbc() { QxIframe.call(this, "iframe_bla.html"); }; QxAbc.extend(QxIframe, "QxAbc"); Now,

Re: [qooxdoo-devel] Newbie

2006-01-23 Thread Sebastian Werner
Marko Milicic schrieb: Hi, I'm new to qooxdoo and I wonder if there is an easy way for completely changing qooxdoo 'skin'. I like qooxdoo very much it features are very useful, but I don't want qooxdoo to looks like MS Windows... In other words I want to build simple interface in single web pag

Re: [Qooxdoo-devel] Newbie guide, part 2

2005-10-11 Thread Sebastian Werner
8, 2005 5:20 AM To: François Lamarre Cc: 'qooxdoo' Subject: Re: [Qooxdoo-devel] Newbie guide, part 2 I have just changed your article from "hidden" to "public". So you can see the result on the homepage now, too. François Lamarre schrieb: Ok, I edited the newbie

RE: [Qooxdoo-devel] Newbie guide, part 2

2005-10-11 Thread François Lamarre
ing, third startups available in a couple of days. -Original Message- From: Sebastian Werner [mailto:[EMAIL PROTECTED] Sent: Saturday, October 08, 2005 5:20 AM To: François Lamarre Cc: 'qooxdoo' Subject: Re: [Qooxdoo-devel] Newbie guide, part 2 I have just changed your arti

Re: [Qooxdoo-devel] Newbie guide, part 2

2005-10-08 Thread Sebastian Werner
Luiz Vaz schrieb: Hehehe, The solution is very simple! ;-) When i see a trouble, we don´t believe thats only a little annoying stuff! It´s seems that there are no editcut.png, but edit-cut.png and so on! There were some changes in the icon themes in RENDERER the last days/weeks

Re: [Qooxdoo-devel] Newbie guide, part 2

2005-10-08 Thread Sebastian Werner
I have just changed your article from "hidden" to "public". So you can see the result on the homepage now, too. François Lamarre schrieb: Ok, I edited the newbie guide part 1 a bit, and it's as good as I can make it for now. I started on part 2, and I'm trying to show people how to build menu

Re: [Qooxdoo-devel] Newbie guide, part 2

2005-10-07 Thread Luiz Vaz
Hehehe,     The solution is very simple! ;-)     When i see a trouble, we don´t believe thats only a little annoying stuff!     It´s seems that there are no editcut.png, but edit-cut.png and so on! At least for me! Regards, Luiz Vaz 2005/10/7, François Lamarre <[EMAIL PROTECTED]>: Ok, I edite