|
Processing... Select a food category in the grid header to filter the food entries.
Description & Source Code
A grid can have merged headers to help better organize its
content. header_and_footer.zul
<zk>
<style src="/widgets/grid/header_and_footer/style.css" />
<grid apply="demo.grid.header_and_footer.FoodListController">
<auxhead sclass="category-center">
<auxheader label="Healthy Food List" colspan="6" rowspan="1" />
</auxhead>
<auxhead sclass="category-center">
<auxheader label="Category Select" colspan="1" rowspan="1" />
<auxheader colspan="5" rowspan="1">
<radiogroup id="categorySelector">
<hlayout width="100%">
<radio label="All Food" checked="true" width="90px" />
<radio label="Vegetables" width="90px" />
<radio label="Seafood" width="90px" />
<radio label="Fruits" width="90px" />
<radio label="Poultry & Lean Meats" width="200px" />
</hlayout>
</radiogroup>
</auxheader>
</auxhead>
<columns>
<column hflex="2">Category</column>
<column hflex="2">Name</column>
<column hflex="1">Top Nutrients</column>
<column hflex="1">% of Daily</column>
<column hflex="1">Calories</column>
<column hflex="2">Quantity</column>
</columns>
<template name="model">
<row>
<label value="${each.category}"></label>
<label value="${each.name}"></label>
<label value="${each.topNutrients}"></label>
<label value="${each.dailyPercent}"></label>
<label value="${each.calories}"></label>
<label value="${each.quantity}"></label>
</row>
</template>
<foot>
<footer span="6" id="footer_category" class="footer_right" />
</foot>
</grid>
</zk>FoodListController.java
package demo.grid.header_and_footer;
import org.zkoss.zk.ui.Component;
import org.zkoss.zk.ui.event.CheckEvent;
import org.zkoss.zk.ui.select.SelectorComposer;
import org.zkoss.zk.ui.select.annotation.Listen;
import org.zkoss.zk.ui.select.annotation.Wire;
import org.zkoss.zul.Footer;
import org.zkoss.zul.Grid;
import org.zkoss.zul.ListModel;
import org.zkoss.zul.ListModelList;
import org.zkoss.zul.Radio;
import demo.data.FoodData;
import demo.data.pojo.Food;
public class FoodListController extends SelectorComposer<Component> {
private static final long serialVersionUID = 1L;
private Grid foolList;
@Wire
private Footer footer_category;
public void doAfterCompose(Component comp) throws Exception {
super.doAfterCompose(comp);
foolList = (Grid) comp;
foolList.setModel(new ListModelList<Food>(FoodData.getAllFoods()));
footer_category.setLabel("A Total of " + FoodData.getAllFoods().size() + " Food Items");
}
@Listen("onCheck = #categorySelector")
public void selectCategory(CheckEvent event) {
String selectedCategory = ((Radio) event.getTarget()).getLabel();
ListModel<Food> model = null;
if (selectedCategory.equals("All Food")) {
model = new ListModelList<Food>(FoodData.getAllFoods());
} else {
model = new ListModelList<Food>(FoodData.getFoodsByCategory(selectedCategory));
}
foolList.setModel(model);
footer_category.setLabel("A Total of " + model.getSize() + " Food Items");
}
}
FoodData.java
package demo.data;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import demo.data.pojo.Food;
import demo.grid.data_filter.FoodFilter;
public class FoodData {
private static List<Food> foods = new ArrayList<Food>();
static {
foods.add(new Food("Vegetables", "Asparagus", "Vitamin K", 115, 43, "1 cup - 92 grams"));
foods.add(new Food("Vegetables", "Beets", "Folate", 33, 74, "1 cup - 170 grams"));
foods.add(new Food("Vegetables", "Bell peppers", "Vitamin C", 291, 24, "1 cup - 92 grams"));
foods.add(new Food("Vegetables", "Cauliflower", "Vitamin C", 92, 28, "1 cup - 124 grams"));
foods.add(new Food("Vegetables", "Eggplant", "Dietary Fiber", 10, 27, "1 cup - 99 grams"));
foods.add(new Food("Vegetables", "Onions", "Chromium", 21, 60, "1 cup - 160 grams"));
foods.add(new Food("Vegetables", "Potatoes", "Vitamin C", 26, 132, "1 cup - 122 grams"));
foods.add(new Food("Vegetables", "Spinach", "Vitamin K", 1110, 41, "1 cup - 180 grams"));
foods.add(new Food("Vegetables", "Tomatoes", "Vitamin C", 57, 37, "1 cup - 180 grams"));
foods.add(new Food("Seafood", "Salmon", "Tryptophan", 103, 261, "4 oz - 113.4 grams"));
foods.add(new Food("Seafood", "Shrimp", "Tryptophan", 103, 112, "4 oz - 113.4 grams"));
foods.add(new Food("Seafood", "Scallops", "Tryptophan", 81, 151, "4 oz - 113.4 grams"));
foods.add(new Food("Seafood", "Cod", "Tryptophan", 90, 119, "4 oz - 113.4 grams"));
foods.add(new Food("Fruits", "Apples", "Manganese", 33, 61, "1 cup - 160 grams"));
foods.add(new Food("Fruits", "Cantaloupe", "Vitamin C", 112, 56, "1 cup - 160 grams"));
foods.add(new Food("Fruits", "Grapes", "Manganese", 33, 61, "1 cup - 92 grams"));
foods.add(new Food("Fruits", "Pineapple", "Manganese", 128, 75, "1 cup - 155 grams"));
foods.add(new Food("Fruits", "Strawberries", "Vitamin C", 24, 48, "1 cup - 150 grams"));
foods.add(new Food("Fruits", "Watermelon", "Vitamin C", 24, 48, "1 cup - 152 grams"));
foods.add(new Food("Poultry & Lean Meats", "Beef, lean organic", "Tryptophan", 112, 240, "4 oz - 113.4 grams"));
foods.add(new Food("Poultry & Lean Meats", "Lamb", "Tryptophan", 109, 229, "4 oz - 113.4 grams"));
foods.add(new Food("Poultry & Lean Meats", "Chicken", "Tryptophan", 121, 223, "4 oz - 113.4 grams"));
foods.add(new Food("Poultry & Lean Meats", "Venison ", "Protein", 69, 179, "4 oz - 113.4 grams"));
foods.add(new Food("Grains", "Corn ", "Vatamin B1", 24, 177, "1 cup - 164 grams"));
foods.add(new Food("Grains", "Oats ", "Manganese", 69, 147, "1 cup - 234 grams"));
foods.add(new Food("Grains", "Barley ", "Dietary Fiber", 54, 270, "1 cup - 200 grams"));
}
public static List<Food> getAllFoods() {
return new ArrayList<Food>(foods);
}
public static Food[] getAllFoodsArray() {
return foods.toArray(new Food[foods.size()]);
}
// This Method only used in "Data Filter" Demo
public static List<Food> getFilterFoods(FoodFilter foodFilter) {
List<Food> somefoods = new ArrayList<Food>();
String cat = foodFilter.getCategory().toLowerCase();
String nm = foodFilter.getName().toLowerCase();
String nut = foodFilter.getNutrients().toLowerCase();
for (Iterator<Food> i = foods.iterator(); i.hasNext();) {
Food tmp = i.next();
if (tmp.getCategory().toLowerCase().contains(cat) &&
tmp.getName().toLowerCase().contains(nm) &&
tmp.getTopNutrients().toLowerCase().contains(nut)) {
somefoods.add(tmp);
}
}
return somefoods;
}
// This Method only used in "Header and footer" Demo
public static List<Food> getFoodsByCategory(String category) {
List<Food> somefoods = new ArrayList<Food>();
for (Iterator<Food> i = foods.iterator(); i.hasNext();) {
Food tmp = i.next();
if (tmp.getCategory().equalsIgnoreCase(category)){
somefoods.add(tmp);
}
}
return somefoods;
}
}
Food.java
package demo.data.pojo;
public class Food {
private String category;
private String name;
private String topNutrients;
private Integer dailyPercent;
private Integer calories;
private String quantity;
public Food(String category, String name, String topNutrients,
Integer dailyPercent, Integer calories, String quantity) {
this.category = category;
this.name = name;
this.topNutrients = topNutrients;
this.dailyPercent = dailyPercent;
this.calories = calories;
this.quantity = quantity;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTopNutrients() {
return topNutrients;
}
public void setTopNutrients(String topNutrients) {
this.topNutrients = topNutrients;
}
public Integer getDailyPercent() {
return dailyPercent;
}
public void setDailyPercent(Integer dailyPercent) {
this.dailyPercent = dailyPercent;
}
public Integer getCalories() {
return calories;
}
public void setCalories(Integer calories) {
this.calories = calories;
}
public String getQuantity() {
return quantity;
}
public void setQuantity(String quantity) {
this.quantity = quantity;
}
}
Copyright © 2005-2025 Potix Corporation All rights reserved.
|
|
Processing... |