jQuery UI Widgets › Forums › General Discussions › Layouts › Layout and Docking Layout › Themes and jqxDockingLayout
Tagged: docking layout, jqxDockingLayout, panel theme, Theme
This topic contains 1 reply, has 2 voices, and was last updated by Dimitar 9 years, 5 months ago.
-
Author
-
Is it possible to apply themes to individual docking windows within the layout?
Here are the code snippets I use to create the docking layout:
var DockLayout= [ { type: 'layoutGroup', orientation:'horizontal', items: [ { type: 'layoutGroup', orientation:'vertical', width:600, items: [ { type: 'tabbedGroup', height:400, items: [ { type: 'layoutPanel', title: 'Incoming Call', contentContainer:"LifeOfCallDataContainer" }, ], }, { type: 'tabbedGroup', height:400, items: [ { type: 'layoutPanel', title: 'Team Status', contentContainer:"TeamStatusDataContainer" } ] }, ] }, { type: 'layoutGroup', orientation:'vertical', width:600, items: [ { type: 'tabbedGroup', height:400, items: [ { type: 'layoutPanel', title: 'My Activity', contentContainer:"ActivityDataContainer" }, ], }, { type: 'tabbedGroup', height:400, items: [ { type: 'layoutPanel', title: 'Messages (3)', contentContainer:"AgentMsgDataContainer" } ] }, ] }, ], }, ];.
.
.
.// Create dock container
$(‘#DockContainer’).jqxDockingLayout({ width:1200,height:800,layout: DockLayout,resizable:true});Hello zardozwildman,
Unfortunately, this is not possible. Themes are only applicable to the docking layout as a whole, e.g.:
$('#DockContainer').jqxDockingLayout({ width: 1200, height: 800, layout: DockLayout, resizable: true, theme: 'orange' });Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.