本文整理汇总了Java中org.zkoss.zul.Cell类的典型用法代码示例。如果您正苦于以下问题:Java Cell类的具体用法?Java Cell怎么用?Java Cell使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Cell类属于org.zkoss.zul包,在下文中一共展示了Cell类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doAfterCompose
import org.zkoss.zul.Cell; //导入依赖的package包/类
@Override
public void doAfterCompose(Component comp) throws Exception {
super.doAfterCompose(comp);
// Fill grid with forms
gridForms.getRows().getChildren().clear();
for(Form form : ConfigLoader.getInstance().getForms().queryForAll()) {
Row row = new Row();
Cell nameCell = new Cell();
Cell linkCell = new Cell();
// Create table name cell
nameCell.appendChild(new Label(form.getTitle()));
// Create table link cell
A link = new A();
link.setTarget("_blank");
link.setHref("/data/" + form.getName());
link.setLabel(form.getName());
linkCell.appendChild(link);
row.appendChild(nameCell);
row.appendChild(linkCell);
gridForms.getRows().appendChild(row);
}
}
示例2: append
import org.zkoss.zul.Cell; //导入依赖的package包/类
private void append(Row row, String label, String toolTip, Component component) {
Div lbl = new Div();
lbl.setStyle("text-align: right");
lbl.appendChild(new Label(label));
if (StringUtils.isNotBlank(toolTip)) {
lbl.setTooltiptext(toolTip);
lbl.setStyle("cursor: help;" + lbl.getStyle());
}
row.appendChild(ZKUtils.newCell(lbl));
if (component instanceof Cell) {
row.appendChild(component);
} else {
row.appendChild(ZKUtils.newCell(modifyComponent(component, toolTip)));
}
}
示例3: newCell
import org.zkoss.zul.Cell; //导入依赖的package包/类
public static Cell newCell(Component component) {
Cell cell = new Cell();
if (component != null) {
cell.appendChild(component);
}
return cell;
}
示例4: newCell
import org.zkoss.zul.Cell; //导入依赖的package包/类
public Cell newCell(Component component, int colspan) {
Cell cell = newCell(component);
if (colspan > 0) {
cell.setColspan(colspan);
}
return cell;
}