Hi,
I want to STOP selection of header row while selecting by keyboard up arrow
key. I mean to say, when i am in 0th row index of the ADG then i dont want
to allow user to press up key and go focus to header(rowIndex=-1).
I am trying to use following code..But focus is not removing from the header
although selectedIndex is 0 all the time.
private function handle_selectionChangeEvent(event:ListEvent):void {
if(event.rowIndex == -1){
event.preventDefault();
event.stopImmediatePropagation();
event.stopPropagation();
}
--
View this message in context:
http://old.nabble.com/STOP-selection-of-header-row-while-selecting-by-keyboard-up-arrow-key-tp28993175p28993175.html
Sent from the FlexCoders mailing list archive at Nabble.com.