ZK
juanxincai
这个作者很懒,什么都没留下…
展开
-
zk中的几个获得组件的方法
getFellow(); getSpaceOwner(); Path.getComponent("/a/b/c");前两种最常用。原创 2008-09-04 23:18:00 · 483 阅读 · 0 评论 -
zk中几种打开页面的写法
1.forward的使用 //链接转发 getDesktop().getExecution().forward(pageUri); 2.redirect的使用 getDesktop(). getExecution().sendRedirect("/index.zul")3.以弹出窗口来打开新的页面: win.doModal(); win.doHigh原创 2008-09-07 10:13:00 · 2575 阅读 · 0 评论 -
zk中程序加入组件的几个方法
setParent, appendChild , insertBefore原创 2008-09-07 10:41:00 · 480 阅读 · 0 评论 -
zk中的spaceOwner 和self
onOK="doOK(self)" xmlns:h="http://www.w3.org/1999/xhtml" >。。。"doOK(spaceOwner)"/>spaceOwner.detach()"/>/> void doOK(Window modalwin) { }原创 2008-09-07 09:49:00 · 708 阅读 · 0 评论 -
zk基础概念之component,page,desktop
component,page,desktop,window的关系比较:Component is an UI object, such as a label, a button and a tree.Page is a collection of a components.Desktop is a collection of pages for serving the same URL requ原创 2008-09-07 10:48:00 · 1451 阅读 · 0 评论 -
ZK-Client的使用
Username: void doOK(Window win) { Clients.submitForm(loginForm); }Clients.scrollBy(100, 0);if (mail.isDirty()) { Clients.confirmClose("Your me原创 2008-09-07 11:47:00 · 1183 阅读 · 0 评论