Bug 553687 - The cell content of a Table are not read while navigating using left and right arrow keys of the keyboard
Summary: The cell content of a Table are not read while navigating using left and righ...
Status: REOPENED
Alias: None
Product: Platform
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 4.10   Edit
Hardware: PC Windows 10
: P3 normal with 1 vote (vote)
Target Milestone: ---   Edit
Assignee: Platform-UI-Inbox CLA
QA Contact:
URL:
Whiteboard: stalebug
Keywords:
Depends on:
Blocks:
 
Reported: 2019-12-02 23:46 EST by vikas rao CLA
Modified: 2022-01-17 00:07 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description vikas rao CLA 2019-12-02 23:46:14 EST
Accessibility: JAWS should read the cell content of a Table while navigating using using left and right arrow keys of the keyboard 

Steps to reproduce:
1. Create a table with editable and readonly columns
2. create a tableviewer editor with full selection and focused cell selection i.e FocusCellOwnerDrawHighlighter(tableViewer, false) and use the below editor activation strategy for editable columns
ColumnViewerEditorActivationStrategy activationStrategy = new ColumnViewerEditorActivationStrategy(
                columnViewer)
        {
            @Override
            protected boolean isEditorActivationEvent(
                    final ColumnViewerEditorActivationEvent activationEvent)
            {
                if (activationEvent.eventType == ColumnViewerEditorActivationEvent.KEY_PRESSED
                        && (activationEvent.keyCode == SWT.ARROW_LEFT
                                || activationEvent.keyCode == SWT.ARROW_RIGHT))
                {
                    return true;
                }

                return super.isEditorActivationEvent(activationEvent);
            }
        };
3. while navigating through the cells using left and right arrow keys, the content of the cell is not read, where as while using up and down arrow key, the contents of the cell is read
Comment 1 Eclipse Genie CLA 2022-01-16 15:00:29 EST
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug.

If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.
Comment 2 vikas rao CLA 2022-01-17 00:06:15 EST
The issue is still simulating in Eclipse 4.12 version.
Comment 3 vikas rao CLA 2022-01-17 00:07:00 EST
The issue is still simulating in Eclipse 4.12 version.