Re: [qooxdoo-devel] How to destroy, not just remove, a tab?

2012-06-21 Thread Fritz Zaucker
If pressing the close button on the tab does indeed cleanup already, you could probably just call execute() on that. At least I wouldn't expect that to behave differently. Cheers, Fritz On Fri, 22 Jun 2012, Martin Wittemann wrote: > Hey, > you should use the dispose method to dispose the tag as

Re: [qooxdoo-devel] Drag and drop

2012-06-21 Thread Martin Wittemann
Hey, I don't think its possible to connect the listener pairs somehow. As far as I can remember, you can add some kind of data to the drag start or action to the data during drag start. You could add different types of data either your draging from the tree or from the list. The drop listener co

Re: [qooxdoo-devel] How to destroy, not just remove, a tab?

2012-06-21 Thread Martin Wittemann
Hey, you should use the dispose method to dispose the tag as well. If its a plain qooxdoo widget, the dispose will clean up all stuff. If you have extended the widget with your own code, you might cancle the timeout e.g. yourself in the destructor. Regards, Martin Am 21.06.2012 um 23:28 schrieb

Re: [qooxdoo-devel] Is there a way to know when the qx.ui.table.model.Remote loaded all the data?

2012-06-21 Thread Derrell Lipman
On Thu, Jun 21, 2012 at 5:18 PM, totty wrote: > no, not all the data. The data in the view ("loads only data that is > currently to be displayed"). But there is no event dispatched when the that > data is ready. I made a custom event that is fired from within the method > that must be implemented

[qooxdoo-devel] How to destroy, not just remove, a tab?

2012-06-21 Thread Scott Chapman
When I close a tab in a TabView by calling this: qx.Class.define("kiosk_portal.TabView", { extend : qx.ui.tabview.TabView, members: { closeTab : function (tabname) { var page = null; this.getChildren().forEach( function(thisPage){ var lookingAt = th

Re: [qooxdoo-devel] Is there a way to know when the qx.ui.table.model.Remote loaded all the data?

2012-06-21 Thread totty
no, not all the data. The data in the view ("loads only data that is currently to be displayed"). But there is no event dispatched when the that data is ready. I made a custom event that is fired from within the method that must be implemented in the remote table (onDataReceived or something like t

[qooxdoo-devel] Your support for qooxdoo 2.0

2012-06-21 Thread Andreas Ecker
Hi, we hope you enjoy the recent release of qooxdoo 2.0 already. As a community member you could do the project a real favor with some public statements and votes, e.g.: * Leave a comment at the announcement: http://news.qooxdoo.org/qooxdoo-2-0-released#comments * Tweet / Retweet: https://twit

Re: [qooxdoo-devel] qooxdoo 2.0 and 1.6.1 released

2012-06-21 Thread Geovanny Junio :: eutsiv
Great job! The best Javascript framework! I'm working in a local community on Brazil for generation of qooxdoo documentation in Portuguese. Thanks! -- Geovanny Junio Consultor de Tecnologia geovanny (at) eutsiv.com +55 31 9422-8885 +55 31 2519-8603 www.eutsiv.com Este e-mail pode conter informaƧ

[qooxdoo-devel] qooxdoo 2.0 and 1.6.1 released

2012-06-21 Thread Andreas Ecker
Dear qooxdoo community, new qooxdoo releases are available! Not only a 1.6.1 patch release, but an exciting major version qooxdoo 2.0. Please see the corresponding announcements: http://news.qooxdoo.org/qooxdoo-2-0-released http://news.qooxdoo.org/qooxdoo-1-6-1-released Everyone is encouraged

[qooxdoo-devel] Drag and drop

2012-06-21 Thread Philipp Engel
Hi together, I have two trees with folders and a list. First of all I can drag from tree 2 to tree 1. Now I want to add another drag and drop functionality to drag list items to tree 1. The problem is, that the functionality of the two drag and drops interfere with each other. How is it possibl

Re: [qooxdoo-devel] icon on the right side qx.ui.form.texfField

2012-06-21 Thread paragasu
Hi Mustafa, Thanks for the advice. I am trying to get what you are saying & been looking at the qx.ui.basic.Atom and qx.ui.form.Textfield and qx.ui.form.DateField for sometime now :) It seems i still miss a lot of stuff.. What kind of new control do i need to put in the switch case statement? Re

Re: [qooxdoo-devel] Doubts about qx.io.rest and basic sample

2012-06-21 Thread Francisco Feijoo
Thanks Daniel, I'll take a look at that sample. I'm sure it will help. Regards. -- Francisco fjfei...@gmail.com -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threa

Re: [qooxdoo-devel] Doubts about qx.io.rest and basic sample

2012-06-21 Thread Daniel Wagner
Hi Francisco, thank you for the kind words. We don't anticipate any major changes in qx.io.rest. The API might change in small details but nothing major. Currently the only REST demo in the framework is this: http://demo.qooxdoo.org/1.6/github/ (you'll need to log in to GitHub to see it in act

Re: [qooxdoo-devel] Is there a way to know when the qx.ui.table.model.Remote loaded all the data?

2012-06-21 Thread Derrell Lipman
On Thu, Jun 21, 2012 at 10:35 AM, totty wrote: > Is there a way to know when the qx.ui.table.model.Remote loaded all the > data? > The Remote model does not load all of the data. In fact, that's its entire purpose. It loads only data that is currently to be displayed, plus some on either end of

[qooxdoo-devel] Is there a way to know when the qx.ui.table.model.Remote loaded all the data?

2012-06-21 Thread totty
Is there a way to know when the qx.ui.table.model.Remote loaded all the data? I need to know when the request for the data ends, not when the row count info is returned from the server (which I can know with the dataChanged event) -- View this message in context: http://qooxdoo.678.n2.nabble.com

Re: [qooxdoo-devel] using an icon in RadioButton

2012-06-21 Thread Daniel Wagner
Hi, inheriting from RadioButton won't work either. RadioButton extends Atom, but the icon is used to draw the actual button graphic. So you'll have to create a composite widget using a RadioButton and an Image. Regards, Daniel On 06/21/2012 01:31 PM, slah wrote: > Hi, > I'm trying to display

[qooxdoo-devel] using an icon in RadioButton

2012-06-21 Thread slah
Hi, I'm trying to display an icon next the radio button instead of a text label, I'm using this code: var rbOption1 = new qx.ui.form.RadioButton(); rbOption.setShow("icon"); rbOption.setIcon("myapp/icon1.png"); but seems it has no effect, i.e. the icon1.png dosen't show up. is it possible to ach