Bug 553687

Summary: The cell content of a Table are not read while navigating using left and right arrow keys of the keyboard
Product: [Eclipse Project] Platform Reporter: vikas rao <vikas.rao>
Component: UIAssignee: Platform-UI-Inbox <Platform-UI-Inbox>
Status: REOPENED --- QA Contact:
Severity: normal    
Priority: P3 CC: vikas.rao
Version: 4.10   
Target Milestone: ---   
Hardware: PC   
OS: Windows 10   
Whiteboard: stalebug

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.