:: Forum >>

Select Rows with the Keyboard

Hey, I have some problems.

How can I get a value from a cel selecting it with the arrows of the keyboard.

somethig like this, but only with the keyboard

// set click action handler
obj.setAction("click", function(src){
var myValue =myData[src.getItemProperty("index")][0];
});

Please
Ruben Bocanegra
Thursday, March 2, 2006
Well, thanks for your help, but I founded a way, and works.

obj.onCurrentRowChanged = function(value){
var row = obj.getCurrentRow();
alert(this.getCellText(0, row) );
};

with this can I get a Value only with the keyboard
Ruben Bocanegra
Friday, March 3, 2006

This topic is archived.


Back to support forum

Forum search