Hi,

if you mean you want to access the id of a visible row, where a user can
click you can do this:

      table.addListener("cellClick",function(e){
        var idForTheRowClicked =
tableModel.getCacheContent().rowBlockCache[0].rowDataArr[e.getRow()].id;
        // do someth with idForTheRowClicked
      });

you could also do custom manipulation in the _onLoadRowDataCompleted method,
and do more than fill the table:
this._onRowDataLoaded(result);
// add result to my custom data structure that has methods to access id
column on its own.

or, in case you need to get id of a row that is not yes on the client, you
should call a .php file on the server with some arguments, and implement
some logic there.

cheers,
Gabi

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Remote-Table-field-map-tp6212835p6213928.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software 
be a part of the solution? Download the Intel(R) Manageability Checker 
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to