I have a TabStrip where I would like to control the width of each TabStripButton, or at least limit them so that they don't span the entire TabStrip. There are only two tabs and the labels are quite short so I would prefer to shorten the tabs. Is there a way to do this?
CODE
this.controls.navTabs = new KONtx.control.TabStrip({
guid: "navTabs",
defaultTab: 1,
tabs: [{label: 'one', value: '1' }, {label: 'two', value: '2' }],
styles: {width:this.width, height:29, vOffset:100},
events: {
onTabSelect: function(event) {
}
}
}).appendTo(this);
Thanks,
Jason