Customizing Bootstrap Theme Demonstration"

From Documentation
Line 85: Line 85:
  
 
=== Implement Collapse Mechanism ===
 
=== Implement Collapse Mechanism ===
[[File:Collapsed.jpg]]
+
[[File:Collapsed.png]]
 
The sidebar is collapsible, user can click the button in the bottom of navbar to collapse or expand sidebar. So we need to declare <tt>toggleSidebarCollapsed()</tt> to proceed the actions. As the below code shows:
 
The sidebar is collapsible, user can click the button in the bottom of navbar to collapse or expand sidebar. So we need to declare <tt>toggleSidebarCollapsed()</tt> to proceed the actions. As the below code shows:
  

Revision as of 02:08, 8 November 2013

DocumentationSmall Talks2013NovemberCustomizing Bootstrap Theme Demonstration
Customizing Bootstrap Theme Demonstration

Author
Raymond Chao, Engineer, Potix Corporation
Date
11th Nov, 2013
Version
ZK 7.0.0 or later

Introduction

Design Layout

AcePreview.png


We picked th Ace Template from {**wrap**}bootstrapas our design model. In this demonstration, we will customize the Dashboard page with Pure ZK and CSS3.

Analyze Layout

First, we separated the layout into 4 parts as the below show:

CBTDLayout.png

  • Navbar
    • A brand int the left
    • A set of menu navigation in the right
  • Sidebar
    • 4 shourtcut buttons
    • Navigation bar
    • Collapsed button
  • Breadcrumbs
    • Breadcrumb
    • Search input
  • Content
    • Header
    • Notification
    • Infobox
    • Panel
    • Tab


According to our analysis, we combined ZK components like hlayout and vlayout to layout the the structure of the page, then set hflx="1" to auto adjust its width when resizing. And include is used to include each part's content. Like the below snippets shows:

<include src="navbar.zul"/>
<hlayout id="main" spacing="0">
	<include src="sidebar.zul"/>
	<vlayout spacing="0" hflex="1">
		<include src="breadcrumbs.zul"/>
		<include src="content.zul"/>
	</vlayout>
</hlayout>

Implements Component

After constructed the basic layout, we can add some ZK components to


Customize Look And Feel

Functionality Code

Add open state to navbar menu

We declare an event handler in popup which will be notified when onOpen event occurs, it will toggle the open sclass to the anchor component. So the anchor's background will be darken when its popup is opened.

<a id="atask" iconSclass="z-icon-tasks" popup="taskpp, position=after_end" sclass="grey">
    ...
</a>
<popup id="taskpp" sclass="tasktodo" width="240px" onOpen="toggleOpenSclass(event, atask);">
    ...
</popup>
<zscript><![CDATA[
import org.zkoss.zk.ui.Component;
import org.zkoss.zk.ui.event.OpenEvent;

// Toggle open sclass to the component
void toggleOpenSclass(OpenEvent event, Component comp) {
	String scls = comp.getSclass();
	if (event.isOpen()) {
		comp.setSclass(scls + " open");
	} else {
		comp.setSclass(scls.replace(" open", ""));
	}
}
]]></zscript>

Implement Collapse Mechanism

File:Collapsed.png The sidebar is collapsible, user can click the button in the bottom of navbar to collapse or expand sidebar. So we need to declare toggleSidebarCollapsed() to proceed the actions. As the below code shows:

void toggleSidebarCollapsed() {
	if (!navbar.isCollapsed()) {
	    navbar.setCollapsed(true);
	    calitem.setTooltip("");
		sidebar.setSclass("sidebar sidebar-min");
		toggler.setIconSclass("z-icon-double-angle-right");
	} else {
	    navbar.setCollapsed(false);
	    calitem.setTooltip("calpp, position=end_center, delay=0");
        sidebar.setSclass("sidebar");
        toggler.setIconSclass("z-icon-double-angle-left");
	}
	Clients.resize(main);
}

Because Navbar is collapsible, isCollapsed() can determine whether navbar is collapsed or not. If not, we can easily call setCollapsed(true) to collapse it. When navbar is collapsed, its children only appear with icon and badge. The text part will popup when mouse hover the icon. Next, we need remove the tooltip of Navitem to prevent it show up with text when hovering. Then add sidebar-min class to sidebar and change the toggler's icon. In the end, Clients.resize(main) will force the client to recalculate the size of the main content.

But the shortcuts