On Fri, Jun 25, 2010 at 08:27, Derrell Lipman <
derrell.lip...@unwireduniverse.com> wrote:
> On Fri, Jun 25, 2010 at 08:08, wrote:
>
>> Hi Everyone
>>
>> I am using a table with remote table model (Qooxdoo 1.1). I want to have a
>> table without visible columns header. However I need to set up c
On Fri, Jun 25, 2010 at 08:08, wrote:
> Hi Everyone
>
> I am using a table with remote table model (Qooxdoo 1.1). I want to have a
> table without visible columns header. However I need to set up columns Ids.
> So I am using method setColumnIds instead of setColumns. In the
> specification of se
Hi Everyone
I am using a table with remote table model (Qooxdoo 1.1). I want to have a
table without visible columns header. However I need to set up columns Ids.
So I am using method setColumnIds instead of setColumns. In the specification
of setColumnIds method there is a note: This will cl
ed by David.fx
Subject: Re: [qooxdoo-devel] Remote Table Model (03-Aug-2009 19:58)
From:Gene Amtower
To: qoox...@dhirtzbruch.de
On Mon, 2009-08-03 at 15:08 +, Daniel Hirtzbruch wrote:
Hello everybody,
I'm using the remote table model for displaying results from a mysq
On Mon, 2009-08-03 at 15:08 +, Daniel Hirtzbruch wrote:
> Hello everybody,
>
> I'm using the remote table model for displaying results from a mysql
> database. Therefore I extended the remote table class as described in
> http://qooxdoo.org/documentation/0.8/remote_table_model. How can I pa
Hello everybody,
I'm using the remote table model for displaying results from a mysql database.
Therefore I extended the remote table class as described in
http://qooxdoo.org/documentation/0.8/remote_table_model. How can I pass my own
parameters to the query, before using the remote table I did
On Sat, 2009-05-09 at 15:15 +0300, Burak Arslan wrote:
> Derrell Lipman wrote:
> > Also, if you're not using trunk, be sure that your backend is passing
> > back a *number* as the number of rows, and not a text representation
> > of the number. Latest trunk contains a patch that corrects for an
Derrell Lipman wrote:
> Also, if you're not using trunk, be sure that your backend is passing
> back a *number* as the number of rows, and not a text representation
> of the number. Latest trunk contains a patch that corrects for an
> erroneous text representation of a number, but 8.2 did not.
On Fri, May 8, 2009 at 2:03 PM, Burak Arslan wrote:
> hi,
>
> i'm debugging an issue with our soap client (and old version is
> available as a contrib) and its remote table model implementation.
>
> the issue is that the soap call to the method that is supposed to return
> the number of rows retur
hi,
i'm debugging an issue with our soap client (and old version is
available as a contrib) and its remote table model implementation.
the issue is that the soap call to the method that is supposed to return
the number of rows returns a number bigger than zero successfully, but
the call to the
On Tue, Jan 27, 2009 at 9:08 AM, Roman Schmid wrote:
> Ouch. I wasn't aware of that.
> Well.. i already posted a follow-up to my original post with a solution
> that seems to work fine here. But i don't have a clue why :)
That's a dangerous kludge, I think. The data isn't loaded yet and you're
Ouch. I wasn't aware of that.
Well.. i already posted a follow-up to my original post with a solution
that seems to work fine here. But i don't have a clue why :)
Or would you skip the Remote Table model entirely and just work with the
Simple table model? Luckily i won't have too many entries in m
I found a solution to the problem:
One should call _onRowCountLoaded() even before the response returns
from the server... at least this seems to result in correct behavior here.
The working implementation looks like this:
_loadRowCount : function() {
this.debug("Load row count");
var slf
On Tue, Jan 27, 2009 at 7:53 AM, Roman Schmid wrote:
> Hello Devs.
>
> I implemented a remote table model to use with my RPC backend. It works,
> but the _loadRowCount method is called a lot, before some data is being
> displayed (about 20 times). That results in a lot of requests being sent
> to
Hello Devs.
I implemented a remote table model to use with my RPC backend. It works,
but the _loadRowCount method is called a lot, before some data is being
displayed (about 20 times). That results in a lot of requests being sent
to the server.
Is this normal behavior? Is there something wrong wi
> I noticed the same thing, and I wrote a real demo of using the
> Remote Table Model. It's not appropriate to have it in the
> demobrowser, however, since there are no available services on that
> server. Instead, you can build it yourself and install the
> server-side services on your own ser
On Thu, Sep 25, 2008 at 7:34 PM, Jim Hunter <[EMAIL PROTECTED]> wrote:
> With all this talk going on about the Remote Table Model, I think that the
> on-line demo should be renamed. It is called "Table with remote table model"
> when in reality it is using a Simple table model and when you add row
With all this talk going on about the Remote Table Model, I think that the
on-line demo should be renamed. It is called "Table with remote table model"
when in reality it is using a Simple table model and when you add rows it's
not getting them remotely, it's getting the data from a local function.
Remote Table Model is pretty crucial to what i'm doing.. it was
working in 0.8 release version..
So, i'm not sure if its broken in SVN now .. but to me, it's one of
the most important features.
The table widget means nothing without a datastore. I could even
imagine the remote table model being th
Derrell Lipman schrieb:
> I'm trying to reconcile comments I've seen on this list regarding
> people presumably using Remote Table Model, and my discovery tonight
> that it didn't work. I'd like to understand how it was working for
> anyone. Although there are seemingly editorial changes betwe
On Tue, Sep 23, 2008 at 3:13 AM, Hugh Gibson <[EMAIL PROTECTED]> wrote:
> > > The problem is that when the data model is passed to the
> > > constructor of the Table, the ID values are reset to the column
> names.
> > >
> >
> > Obviously, that's not where it happens. Sorry. It happens when
> > d
> Actually, I hadn't changed anything from a map to an array; I had
> just changed which "index" (property of the map) was used to
> reference the map. I changed it from the string ID to the column
> number. However, I now see that the data provided to the Remote
> data model is intended to be di
> > The problem is that when the data model is passed to the
> > constructor of the Table, the ID values are reset to the column
names.
> >
>
> Obviously, that's not where it happens. Sorry. It happens when
> dataModel.setColumns() is called by the application. The problem I
> described, howev
On Mon, Sep 22, 2008 at 2:10 AM, Tobias Oetiker <[EMAIL PROTECTED]> wrote:
> Derrell,
>
> Yesterday Derrell Lipman wrote:
> [...]
> > using the Remote Data Model. The last tab of the qooxdoo-contrib project
> > RpcExample is a table that uses a remote table model.
>
> can you convert that into an
On Mon, Sep 22, 2008 at 2:46 AM, Hugh Gibson <[EMAIL PROTECTED]> wrote:
> Derrell,
>
> I've been using the remote table for a couple of years and haven't ever
> hit this "fundamental problem" that you talk of.
> It appears that you have misunderstood how the row data is stored in the
> remote ta
On Mon, Sep 22, 2008 at 9:42 AM, Derrell Lipman <
[EMAIL PROTECTED]> wrote:
>
> The problem is that when the data model is passed to the constructor of the
> Table, the ID values are reset to the column names.
>
Obviously, that's not where it happens. Sorry. It happens when
dataModel.setColumns
Derrell,
See my response in the thread. I think I cover all the issues there.
Your checkin will have broken our code - if we were using 0.8 :-)
The documentation needs to be improved.
Hugh
> *Subject:* [qooxdoo-devel] Remote table model -- was anyone using
> it?
> *From:* "
he detective work I've
done this morning more difficult). We should know better now...
Also, I've CCed this to your private address as a previous comment of
mine to the mailing list seems to have got stuck in a queue.
Hugh
> *Subject:* Re: [qooxdoo-devel] Remote Table Model
> *From
Derrell,
Yesterday Derrell Lipman wrote:
[...]
> using the Remote Data Model. The last tab of the qooxdoo-contrib project
> RpcExample is a table that uses a remote table model.
can you convert that into an accual url for me ?
cheers
tobi
--
Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600
I'm trying to reconcile comments I've seen on this list regarding people
presumably using Remote Table Model, and my discovery tonight that it didn't
work. I'd like to understand how it was working for anyone. Although there
are seemingly editorial changes between the 0.7 version and the 0.8 vers
Holy fly paper, Batman! It's a real bug!
I was under the impression that numerous people were actually using the
Remote Data Model, but it had a serious bug in it and just plain didn't
work. I've fixed that bug and also provided a real live working example of
using the Remote Data Model. The la
Hi,
Here is my code(very much incorrect) in that I have used Remote
instead of Simple. Still doesn't seem to work.
qx.Class.define("qx.ui.table.model.RemoteTable",
{
extend : qx.ui.table.model.Remote,
members : {
_loadRowCount: function()
{
/* var tableModel = new qx.ui.table.mode
On Fri, Sep 19, 2008 at 2:35 AM, salman farci <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Its been a hardtime for me to get done with atleast a simple "remote
> table model" working. After extending Remote class and implementing
> _loadRowCount() and _loadRowData(), it returns an error saying
> "_loadRow
Hi,
Its been a hardtime for me to get done with atleast a simple "remote
table model" working. After extending Remote class and implementing
_loadRowCount() and _loadRowData(), it returns an error saying
"_loadRowCount() is not a function", Thats one thing. And another
thing is that once I get dat
Thanks, I had seen that but it was tightly bound with the XML databinding
code in qcl. And I was hoping that someone had done this same sort of thing
outside of the qcl code.
Thanks,
Jim
On Jan 11, 2008 11:16 AM, cboulanger <[EMAIL PROTECTED]> wrote:
> Hi Jim,
>
> have a look at
>
> contrib://q
Hi Jim,
have a look at
contrib://qcl/trunk/source/class/qcl/databinding/simple/RemoteTableModel.js
- maybe it can help you - I also had to do some experimenting to find
out how the remote table works...
Christian
Jim Hunter schrieb:
> I found some emails where people are using the Remote Ta
I found some emails where people are using the Remote Table Model with the
XML stuff from the CONTRIB area, but is there anyone out there that is using
it straight out, using a standard backend? I am just about to embark on
adding this to my application and was looking for pointers etc on the best
37 matches
Mail list logo