f30-2066299.zul
来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 46 行
ZUL
46 行
<?xml version="1.0" encoding="UTF-8"?><!--F30-2066299.zul{{IS_NOTE Purpose: Description: History: Tue Sep 2 16:53:14 2008, Created by tomyeh}}IS_NOTECopyright (C) 2008 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window> You shall see the following below the button, after clicking the button <separator bar="true"/> onFulfill: false onClick: false <div> You shall see me </div> <separator bar="true"/> <button id="b" label="Test"/> <zscript> void showInfo(String evtnm) { l.value += " " + evtnm + ": " + d.children.empty; } b.addEventListener(Events.ON_CLICK, new EventListener() { public void onEvent(Event event) { showInfo("onClick"); } }); </zscript> <separator/> <label id="l"/> <div id="d" fulfill="b.onClick" onFulfill='showInfo("onFulfill")'> You shall see me </div></window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?