[flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Dominic Pazula
I'm looking to: I have an AdvancedDataGrid and I want track the user paging up, down, and across the grid with the arrow keys. I don't want the data to be editable, which means I cannot use the itemFocusIn event (throw, as you say, by the item editor). So I would like to know when the user

RE: [flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components Yeah, I still can't get it to work. I've simplified the test down to a basic DG. Adding editable=true on the DG disables the up and down arrow. Here's the test project. The data file can be found

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Dominic Pazula
AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components I'm looking to: I have an AdvancedDataGrid and I want track the user paging up, down, and across the grid with the arrow keys. I don't want the data to be editable, which

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Dominic Pazula
: Sunday, February 10, 2008 3:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components I finally got around to trying this. It doesn't work. Setting the column to editable=true and rendererIsEditor=true still does not fire

RE: [flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Alex Harui
Sent: Monday, February 11, 2008 9:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components I'm looking to: I have an AdvancedDataGrid and I want track the user paging up, down, and across the grid with the arrow keys. I don't want the data

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-10 Thread Dominic Pazula
I finally got around to trying this. It doesn't work. Setting the column to editable=true and rendererIsEditor=true still does not fire the itemFocusIn event. The change event ALMOST allows me to track which cell is highlighted with keyboard navigation. However, if the user scrolls onto

RE: [flexcoders] Re: Keyboard navigation to objects within components

2008-02-10 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components I finally got around to trying this. It doesn't work. Setting the column to editable=true and rendererIsEditor=true still does not fire the itemFocusIn event. The change event ALMOST allows me to track

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-06 Thread Dominic Pazula
aharui@ wrote: Editable=true? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday, February 04, 2008 4:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation

RE: [flexcoders] Re: Keyboard navigation to objects within components

2008-02-06 Thread Alex Harui
%40yahoogroups.com ] On Behalf Of simonjpalmer Sent: Monday, February 04, 2008 4:25 AM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components seems like you want to tab through the columns

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-04 Thread Dave
:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday, February 04, 2008 4:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components seems like you want to tab through the columns of the selected row, I have not seen any way

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-04 Thread dannytab69
--- In flexcoders@yahoogroups.com, dannytab69 [EMAIL PROTECTED] wrote: I'm having a number of issues in my application regarding keyboard navigation and selection of objects within other components. For example, in a datagrid I have, two of the columns' are displayed as link buttosn, each of

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-04 Thread simonjpalmer
seems like you want to tab through the columns of the selected row, I have not seen any way of doing that an somewhat inelegant brute force method would be to define shortcuts to the buttons in your columns and trap those shortcuts as key presses in the component, check which row is selected, get

RE: [flexcoders] Re: Keyboard navigation to objects within components

2008-02-04 Thread Alex Harui
Editable=true? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday, February 04, 2008 4:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard navigation to objects within components seems like