Here's my current setup... I have several tabs (Using CTabFolder and CTabItems) each with its own ScrolledComposite. I was able get the first tab working with the answer from https://stackoverflow.com/a/23882007/4288015 but this does not work when applied to the other ScrolledComposite on the second tab. The second tab doesn't recognize the mouse wheel even with the MouseWheel listeners removed from both ScrolledComposites. What might be the issue causing the first tabs ScrolledComposite to work but not the second one?
Why is only 1 of my ScrolledComposites scrolling with the mouse wheel?
141 Views Asked by whitesoup12 At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in SWT
- Opening PDF file in SWT Browser - XulRunner default viewer
- SWT CTabFolder doesn't display when running from eclipse
- Sash becomes lost after resize
- Making a table dynamic according to the size of the screen in SWT
- How to align image to center of table cell (SWT Table) RAP Platform
- Unable to set size for a scrolled composite SWT
- RCP or SWT to build eclipse plugin
- How to add html code to the table column header in Eclipse RAP
- SWT Text Widgets in StackLayout—Can't adjust height when switching top control
- How to drag and open file in editor?
- How to make a SWT Composite selectable?
- scroll and auto resize
- Simulate click on menu item in SWT
- How to stop re fetching of data in JFace TableViewer during column sorting
- SWT - show multiple table items
Related Questions in MOUSEWHEEL
- jQuery Mousewheel - several part to scroll
- Android : Catch mouse wheel button pressed/released before activity stops
- How do I receive the MouseWheel event when mouse pointer is not in the window?
- What WheelEvent.deltaZ refers to?
- Padding-bottom not works for fixed div
- how to properly record the length of mousewheel event in WPF
- zoom jpeg image on canvas with mousewheel event in javascript
- Mousewheel scroll fire only once next callback
- Perform Mouse Left Clicks on Scroll Wheel Input
- Check mouse wheel state SFML
- Stop MouseWheel msgs getting to AutoScroll panel?
- Smooth mouse wheel scrolling
- Mouse wheel scrolls behavior in Chromebook
- QWheelEvent::ignore() doesn't work in promoted QLineEdit?
- JavaScript: Get clickevent coordinates of a programatically simulated click on HTML element
Related Questions in SCROLLEDCOMPOSITE
- Unable to set size for a scrolled composite SWT
- How can I scroll a ScrolledComposited in Eclipse SWT Design view?
- Why is only 1 of my ScrolledComposites scrolling with the mouse wheel?
- SWT - computingSize for Multi-line textfield inside ScrolledComposite
- Should I set ScrolledComposite content twice? How to use ScrolledComposite correctly?
- Set ScrolledComposite's ScrollBar visibility to false in SWT
- How can I show Scroll on my UI, with JAVA, SWT?
- Why is setSize method necessary to show scroll on Composite in SWT?
- JFace PreferencePage List with scrollbars
- How to fill a ScrolledComposite?
- SWT Label inside a scrolled composite is not wrapping dynamically
- SWT tandem scrollbars in composite
- Horizontal Alignment Off for Dynamic Composite within a ScrolledComposite
- SWT Table inside ScrolledCompsite: no scrolling by Mouse Wheel
- Java SWT - ScrolledComposite inside Group
Related Questions in CTABITEM
- Why is only 1 of my ScrolledComposites scrolling with the mouse wheel?
- Is there a way to make CTabItem not accessible by the user?
- Measuring font fontsize of CTabItems in SWT?
- how to add more than one items in one CTabItem?
- SWT: How to detect when a new CTabItem is added to CTabFolder?
- SWT CTabFolder Check If CTAB Exists
- Java SWT - Set ForeGround/Background Color of CTabItem (of CTabFolder)
- SWT Use Composite from File
- Set Controls with arbitrary positions on CTabItem
- Why SWT CTabItem doesn't dispose child widget recursively?
- SWT CTabItem meaning of setData and setControl
- Underline below the name of CTab
- SWT: How to redisplay new contents of a CTabItem
- How to determine the correct position of an Image inside of a CTabItem
- Set header-width of CTabItem
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I was able to fix the issue by using StyledText instead of Text. This allowed me to wrap the text and maintain the mouse wheel scroll capabilities.