Skip to content

Instantly share code, notes, and snippets.

@senthilmuthiah
Created February 1, 2013 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save senthilmuthiah/4689253 to your computer and use it in GitHub Desktop.
Save senthilmuthiah/4689253 to your computer and use it in GitHub Desktop.
<?page title="Child Window" contentType="text/html;charset=UTF-8"?>
<zk>
<window id="childwindow" title="Child Window" border="normal" mode="modal" width="20%">
<label value="First Name"></label>
<separator></separator>
<textbox value="${arg.firstName}"></textbox>
<separator></separator>
<label value="Last Name"></label>
<separator></separator>
<textbox value="${arg.lastName}"></textbox>
<separator></separator>
<button label="Close" onClick="childwindow.detach()"></button>
</window>
</zk>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment