Hi, when switching tabs in a TabPane, the Javascript version currently does not fire a select event as per onSelect(). This patch adds the functionality in.
In Java land, when setting a selected tab the display also updates to reflect the change. Currently in Javascript land, changing the selected tab just updates a number somewhere, and the screen is left untouched.
Apply this little patch to have the TabPane re-draw and update itself:
SlimerDude Thu 10 Sep 2015
Hi, when switching tabs in a TabPane, the Javascript version currently does not fire a select event as per
onSelect()
. This patch adds the functionality in.SlimerDude Fri 11 Sep 2015
In Java land, when setting a selected tab the display also updates to reflect the change. Currently in Javascript land, changing the selected tab just updates a number somewhere, and the screen is left untouched.
Apply this little patch to have the TabPane re-draw and update itself:
andy Mon 21 Sep 2015
Both fixed