Re: [qooxdoo-devel] leaking class or what is wrong?

2012-01-11 Thread Jacob Abraham
from your code, you are adding ta both times to the container rather than ta1 and ta2 From: Derrell Lipman To: qooxdoo Development Sent: Monday, January 9, 2012 11:10 AM Subject: Re: [qooxdoo-devel] leaking class or what is wrong? http://manual.qooxdoo.o

Re: [qooxdoo-devel] getLayoutParent bug on Chrome

2011-06-08 Thread jacob
Derrell, It's stupid mistake. I'm discovering that mistake every now and then, depending on changes made to browsers and oldness of my code. Cheers, Jacob -- View this message in context: http://qooxdoo.678.n2.nabble.com/getLayoutParent-bug-on-Chrome-tp6449586p6450211.html Sen

Re: [qooxdoo-devel] getLayoutParent bug on Chrome

2011-06-07 Thread jacob
led Chrome, the browser puts indexOf() function at the and. I've changed the code to: commandSet.forEach(function(el){ toolBar.add(el); }); and it works fine. Now I know I loose compatibility where JS < 1.6 but it's not immidiate concern. Thanks, Jacob -- View this me

[qooxdoo-devel] getLayoutParent bug on Chrome

2011-06-07 Thread jacob
dToolBar.js:501 qx.Mixin.define.members.addMChildrenHandling.js:90 qx.Class.define.constructOverviewPanel.js:25 It doesn't occur on Safari or IE9. QXSDK version is 1.4.1 Anyone have any clues how to solve it ? Thanks, Jacob -- View this message in context: http://qooxdoo.678.n2.nabble.com/getLayoutParent-bug-on-Chrome-tp

Re: [qooxdoo-devel] PhoneGap

2010-09-23 Thread jacob
oetiker wrote: > > also googeling for qooxdoo and phonegap returns an interesting > github repo ... > Tobi, I know for some using google doesn't come easy - not one of them. Came across gtihub repo unify earlier but that doesn't say much so thought I ask if anyone have any experience so far.

[qooxdoo-devel] PhoneGap

2010-09-23 Thread jacob
Anybody tried developing with Qooxdoo for mobile platforms like iPhone or Android, perhaps relaying on PhoneGap? I can see some reference to PhoneGap in API (qx.log.appender.PhoneGap) but no word apart from that anywhere. -- View this message in context: http://qooxdoo.678.n2.nabble.com/PhoneGa

Re: [qooxdoo-devel] Table with Remote model not refreshing

2010-09-23 Thread jacob
Christian Hagendorn wrote: > > Hi Jacob, > > would it possible for you to provide a small application to reproduce > your issue. Could you please also give me some information about your > environment (qooxdoo version, browser, etc.) > Christian, I'm not doing

[qooxdoo-devel] Table with Remote model not refreshing

2010-09-22 Thread jacob
I have a qx.ui.table.Table with qx.ui.table.model.Remote behind it. On the server side 1500 elements in collection. When I scroll slowly down everything is fine. When I scroll back in the middle I can only see empty rows and first 100 on top. My qx.ui.table.model.Remote._loadRowData is simply not

Re: [qooxdoo-devel] Dynamic updates to Remote model of Table

2010-09-21 Thread jacob
thron7-2 wrote: > > I'm not familiar with the internals of model.Remote. I think you have to > override _loadRowData anyway, and this is just what prefetchRows calls. > Which other method do you have to fetch data from the server? > _loadRowData is overridden to load data from the server. But

Re: [qooxdoo-devel] Dynamic updates to Remote model of Table

2010-09-21 Thread jacob
thron7-2 wrote: > >> Yes, from the server. The row would be *inserted* on the server but at >> the >> end, so as soon I remove something on client side I want to get some more >> rows from the end without clearing cache. > > But that is easy. You can removeRow on the client, and for the new row

Re: [qooxdoo-devel] Dynamic updates to Remote model of Table

2010-09-21 Thread jacob
panyasan wrote: > > Hi, > > I was trying to solve this question once, using a comet/server-push-like > mechanism. I built a "databinding" layer on top of the TreeVirtual and the > Table widgets which manipulated their internal cache incrementally. Parts > of this can be seen in the "virtualdata

Re: [qooxdoo-devel] Dynamic updates to Remote model of Table

2010-09-21 Thread jacob
Sorry, should have been more clear the first time I want to present to my users (client side) collection of objects (rows). This collection however can change over time server side so I would like to synchronize it with clients. As mentioned before I'm using table to display my collection and

[qooxdoo-devel] Any plans for in-browser UI designer

2010-09-20 Thread jacob
Are there any plans or perhaps work started on drag'n'drop UI designer ala ones seen in other frameworks? Ragards, Jacob -- View this message in context: http://qooxdoo.678.n2.nabble.com/Any-plans-for-in-browser-UI-designer-tp5550854p5550854.html Sent from the qooxdoo mailing list

[qooxdoo-devel] Dynamic updates to Remote model of Table

2010-09-20 Thread jacob
ve is to have remote table model which is initiated from the server but then every now and then updates are sent to the client async to remove or add row. Can anyone suggest the best way to go around that? Thanks, Jacob -- View this message in context: http://qooxdoo.678.n2.nabble.com/Dynamic-up