EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Stefan B. on December 16, 2014, 07:43:05 AM



Title: tabWidth on EasyUi not working?
Post by: Stefan B. on December 16, 2014, 07:43:05 AM
Hello, the tabWidth on easyUi is not working. I have a longer text but this is not complete visible.
Is there a maximum width defined?

Code:
		$('#postprocessingTabs').tabs({
   border: false,
   fit: true,
   tabPosition: 'left',
   tabWidth: 340
});


Title: Re: tabWidth on EasyUi not working?
Post by: jarry on December 16, 2014, 08:57:50 AM
Please use the 'headerWidth' property instead of 'tabWidth'.
Code:
		$('#postprocessingTabs').tabs({
    border: false,
    fit: true,
    tabPosition: 'left',
    headerWidth: 340
});