Advertisement
Guest User

kota.zul

a guest
Aug 20th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <?page title="Master Kota" contentType="text/html;charset=UTF-8"?>
  2. <zk>
  3. <window id="wndKota" title="Master Kota" border="normal" width="250px" height="200">
  4. <listbox id="lstKota" onSelect="isiKota()">
  5. <listhead>
  6. <listheader label="KODE" sort="auto" />
  7. <listheader label="NAMA" sort="auto" />
  8. </listhead>
  9. <listitem>
  10. <listcell label="001" />
  11. <listcell label="JAKARTA" />
  12. </listitem>
  13. <listitem>
  14. <listcell label="002" />
  15. <listcell label="BEKASI" />
  16. </listitem>
  17. <listitem>
  18. <listcell label="003" />
  19. <listcell label="BOGOR" />
  20. </listitem>
  21. <listitem>
  22. <listcell label="004" />
  23. <listcell label="TANGERANG" />
  24. </listitem>
  25. <listitem>
  26. <listcell label="005" />
  27. <listcell label="SURABAYA" />
  28. </listitem>
  29. </listbox>
  30. <zscript>
  31. void isiKota(){
  32. Page p = Executions.getCurrent().getDesktop().getPage("register");
  33. Window w = (Window)p.getFellow("wndRegister");
  34. Textbox tempat = (Textbox)w.getFellow("tempat");
  35. tempat.setValue(lstKota.getSelectedItem().getChildren().get(1).getLabel());
  36. wndKota.detach();
  37. }
  38. </zscript>
  39.  
  40. </window>
  41. </zk>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement