RE: [flexcoders] DataGrid tab order (again)

2007-12-09 Thread Alex Harui
Yeah, that's SDK-12588. Fixed in Flex 3. It appears you can sort of get around it like this: import mx.controls.listClasses.ListBaseContentHolder; private function hackit():void { var n:int = srcgrid5.numChildren; for (var i:int = 0; i < n; i++) { if (srcgrid5.getChild

RE: [flexcoders] DataGrid tab order (again)

2007-12-05 Thread Alex Harui
If you're cheating on how tabbing works, you'll have this problem in IE. In IE, if you aren't in the tab order from the FocusManager's perspective you could end up having focus leave to the browser. There might be a bug related to that as well where we don't handle all cases. I won't have time to