Menu
  • HOME
  • TAGS

Increase ExtJS TabBar scrolling speed within TabPanel

extjs,extjs4,tabpanel

Like MarthyM said, override it: Ext.define('Ext.override.layout.container.boxOverflow.Scroller', { override : 'Ext.layout.container.boxOverflow.Scroller', //The number of pixels to scroll by on scroller click scrollIncrement: 400 // increased from 20 }); ...

Add Layouts on TabPane JavaFX

java,user-interface,javafx,tabpanel

Not sure if Tab allows that as while setting component we only have setContent(Node) mehtod but Tab is like a container (Control)you can add a container (any children of Node object) like Border Pane ,Flow Pane which support Laying out their children. Tab tab = new Tab(); BorderPane borderPane =...

Fail to catch tab change event

javascript,events,controller,sencha-touch,tabpanel

First off it seems you can only implement these listeners on the tabBar of the tabPanel Having looked through the source code though it seems that this never get's fired even though it is documented. http://docs-origin.sencha.com/touch/2.4/2.4.1-apidocs/source/Bar3.html#Ext-tab-Bar-event-tabchange What I could suggest is either as you pointed out to hook into the...

Add widget doesn't work

gwt,tabpanel

If you add a widget and it does not show up, most often the problem is with the height. In this case you set it explicitly on your TabPanel, but if the parent widget has a height of zero, the TabPanel won't be visible. You either have to add it...

TabPane, changing color of tab-header-area

javafx-8,tabpanel

.tab-header-background { -fx-background-color: green ; } seems to work for me...

JavaFX 8: Unstable interactive TabPane when adding new Tab

java,javafx,javafx-8,tabpanel

Here is my code for the RenamableTab class: import javafx.application.Platform; import javafx.scene.Node; import javafx.scene.control.Label; import javafx.scene.control.Tab; import javafx.scene.control.TextField; public class RenamableTab extends Tab { private final Label label; private final TextField textField; public RenamableTab() { this("New Tab", null); } public RenamableTab(String text) { this(text, null); } public RenamableTab(String text, Node...

How to get TabPanel ActualWidth from TabControl

wpf,tabcontrol,tabpanel

I ended up using visual tree helper in the codebehind file var tabPanel = VisualTreeHelpers.FindChild<TabPanel>(TabControl, "MenuPanel"); ...

Dynamic bootstrap active tab

coldfusion,bootstrap,tabpanel

You can give this a try: <div role="tabpanel"> <!-- Nav tabs --> <ul class="nav nav-tabs" role="tablist"> <cfoutput query="lessons" group="lesson_date"> <li role="presentation" <cfif lessons.currentRow EQ 1>class="active"</cfif>> <a href="###DateFormat(lesson_date, 'ddddd')#" aria-controls="#DateFormat(lesson_date, 'ddddd')#" role="tab" data-toggle="tab" >#DateFormat(lesson_date, 'ddddd')#, #DateFormat(lesson_date, 'd')# #DateFormat(lesson_date, 'mmmm')# </a> </li>...