Filter"

From Documentation
Line 107: Line 107:
 
** API signature: ''performFiltering(@BindingParam("constraint") Object constraint)''
 
** API signature: ''performFiltering(@BindingParam("constraint") Object constraint)''
 
** Usage:
 
** Usage:
Perform filtering with onChanging event
+
Perform filtering with onChanging event, with String constraint from Textbox
 
<source lang="java" high="2">
 
<source lang="java" high="2">
 
<textbox value="@bind(vm.constraint)" instant="true"  
 
<textbox value="@bind(vm.constraint)" instant="true"  
 
onChanging="@command('performFiltering', constraint=event.value)"></textbox>
 
onChanging="@command('performFiltering', constraint=event.value)"></textbox>
 
</source>
 
</source>
Perform filtering with onChange event
+
Perform filtering with onChange event, with Date constraint from Datebox
 
<source lang="java" high="2">
 
<source lang="java" high="2">
 
<datebox value="@bind(vm.constraint)"  
 
<datebox value="@bind(vm.constraint)"  

Revision as of 05:57, 31 October 2013

amchuang

Author
Sam Chuang, Engineer, Potix Corporation
Date
October 30, 2013
Version
ZK 6.5 and later

Introduction

ZK give developer the power of creating advanced component, extending the component set for your application. In this article, I will create a re-usable component: filterpopup. It's designed for working with collection component that needs filter functionality. For instance, the filterpopup component can be used with Grid, user can use it to filter out huge amount of data, search the required information quickly and intuitively. Besides, it's also designed for highly customizable, able to integrate with different type of constrain, seamlessly works with different type of data type.

  • Live Demo

http://screencast.com/t/Uqi5bZNS

How it Works

The Filterpopup component is composed from three regions, with a default implementation of View Model.

Regions

Top

The top region is responsible for configuration settings. The default implementation includes:

  • Textbox: used for input constraint to perform filtering command.
  • Checkbox: to perform select all command.

Default implementation:

		<div id="top" vflex="min">
			<vlayout>
				<textbox value="@bind(vm.constraint)" instant="true" 
						onChanging="@command('performFiltering', constraint=event.value)"></textbox>
				<checkbox checked="@load(vm.selectAll)" label="(Select All)" 
						onCheck="@command('selectAll', checked=event.checked)"></checkbox>
			</vlayout>
		</div>

ZK Filter Top Region.png

Center

The center region is responsible for showing the filtered result by constraint, by using Listbox component.

  • Default implementation:
	<div id="center" vflex="true">
		<custom-attributes org.zkoss.zul.listbox.rod="true"/>
		<listbox model="@bind(vm.filteredByConstraintModel)" 
				checkmark="true" id="listbox" vflex="true">
			<template name="model">
				<listitem>
					<listcell label="@load(each)" />
				</listitem>
			</template>
		</listbox>
	</div>

ZK Filter Center Region.png

Selection

The Listbox in center region is responsible for marking user's selection. The selection will become filtered result of filterpopup when user confirm the selection, when user click the ok button. Note that if user doesn't confirm the selection or user click the cancel button, the selection will be discard.

ZK Filter Center Region Selection.png

Bottom

The bottom region is responsible for commands, The default implementation includes:

  • OK button: perform ok command to confirm user's selection, and fire a FilterEvent with selection.
  • Cancel button: perform cancel command to discard any changes.
	<div id="bottom" vflex="min">
		<hbox pack="end" width="100%" spacing="5px">
			<button onClick="@command('ok')" label="OK" mold="trendy" width="75px"></button>
			<button onClick="@command('cancel')" label="Cancel" mold="trendy" width="75px"></button>
		</hbox>
	</div>

ZK Filter Bottom Region.png

Usage

Event

  • FilterEvent: triggered when user click OK button (perform ok command) and when the selection is not empty. Use this event to get filtered result.
    • MVC:
@Listen("onFilter=#filterpopup")
public void onFilter(FilterEvent evt) {
	grid.setModel(new ListModelList(evt.getFiltered()));
}

View Model

Bindings

  • constraint: the value of constraint is used for performing filtering task, the result will be showing in the listbox of center area
    • API signature: setConstraint(Object constraint)
    • Usage:

Bind constraint with String

<textbox value="@bind(vm.constraint)" instant="true" 
		onChanging="@command('performFiltering', constraint=event.value)"></textbox>

Bind constraint with Date

<datebox value="@bind(vm.constraint)" 
		onChange="@command('performFiltering', constraint=self.value)"></datebox>

Commands

  • setFilter
  • TODO: setComparator
  • selectAll
  • performFiltering:
    • API signature: performFiltering(@BindingParam("constraint") Object constraint)
    • Usage:

Perform filtering with onChanging event, with String constraint from Textbox

<textbox value="@bind(vm.constraint)" instant="true" 
		onChanging="@command('performFiltering', constraint=event.value)"></textbox>

Perform filtering with onChange event, with Date constraint from Datebox

<datebox value="@bind(vm.constraint)" 
		onChange="@command('performFiltering', constraint=self.value)"></datebox>
  • ok
  • cancel

Customization

Settings

Use template with name="top" to customize the top region.

<filterpopup id="filterpopup" width="300px" height="400px">
	<template name="top">
		<vlayout>
			<textbox value="@bind(vm.constraint)" instant="true" 
					onChanging="@command('performFiltering', constraint=event.value)"></textbox>
			<checkbox checked="@load(vm.selectAll)" label="(Select All)" 
					onCheck="@command('selectAll', checked=event.checked)"></checkbox>
		</vlayout>
	</template>
	...
</filterpopup>
Filter

Use setFilter command to set filter

<filterpopup id="filterpopup" width="300px" height="400px">
	<template name="top">
		<vlayout>
			<radiogroup>
				<radio label="Contains..."
					onCheck="@command('setFilter', filter=ContainsStringFilter)" 
					checked="true">
				</radio>
				<radio label="Begins with..."
					onCheck="@command('setFilter', filter=StartWithStringFilter)">
				</radio>
			</radiogroup>
			...
		</vlayout>
	</template>
	...
</filterpopup>
Comparator

Head

Use template with name="head" to customize the listhead of Listbox in center region.

<filterpopup id="filterpopup" width="300px" height="400px">
	<template name="head">
		 <listhead>
	            <listheader label="Name"/>
	            <listheader label="Birth"/>
	        </listhead>
	</template>
	...
</filterpopup>

Model

Use template with name="model" to customize the Listbox in center region.

<filterpopup id="filterpopup" width="300px" height="400px">
	<template name="model">
		<listitem>
			<listcell label="@load(each.name)" />
			<listcell label="@load(each.birth)" />
		</listitem>
	</template>
	...
</filterpopup>

Summary

With the power of ZK technology (MVVM, template etc...), allows me to created highly customizable component: Filterpopup, that can be used with various scenario to perform filter task.

Resource

You can get the complete source of the example used in this smalltalk from its github or download the Filterpopup binary file here.