i find this  in google but this  dont send back the column/row, only the 
row or index?!?

this.table1.getSelectionModel().iterateSelection(function(index) {
    alert(index);
    alert("ID: "+this.table1.getValue(0, index));
    });

> On Sun, Mar 7, 2010 at 12:38, [email protected] 
> <mailto:[email protected]> <[email protected] 
> <mailto:[email protected]>> wrote:
>
>     Hello,
>
>     i try  this
>
>     var row             = this.table1.getChildrenContainer().getRow();
>     var column     = this.table1.getChildrenContainer().getColumn();
>
>     var row             = this.table1.getRow();
>     var column     = this.table1.getColumn();
>
>     i see a focusedRow /column methd but that can be teh right, or? i
>     dontw
>     ant a focused, i want a selected and when i try it, i get  nor real
>     values that connected to the selected one
>
>
> There are various selection models, e.g. single-selection, 
> multi-selection, multi-interval, etc. Therefore there's not a single 
> method in Table itself to obtain the selection. Instead, selection is 
> handled by the Selection Model class qx.ui.table.selection.Model. In 
> there, you'll find methods like getSelectedRanges() which returns to 
> you the selection.
>
> You can obtain the selection model object with table.getSelectionModel().
>
> Derrell
>  
> ------------------------------------------------------------------------
>
> ------------------------------------------------------------------------------
> Download Intel&#174; Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ------------------------------------------------------------------------
>
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>   


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to