Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <hlayout
  2. style="padding-left: 40px;padding-top:20px;padding-bottom:20px;"
  3. hflex="1" vflex="1">
  4. <separator />
  5.  
  6. <listbox id="candidateLb" vflex="true" width="250px"
  7. multiple="true" model="${arg.candidateModel}">
  8. <listhead>
  9. <listheader label="Default Column List"></listheader>
  10.  
  11. </listhead>
  12. <template name="model" var="each">
  13. <listitem>
  14. <listcell label="${each}" />
  15.  
  16. </listitem>
  17. </template>
  18. </listbox>
  19.  
  20. <vbox spacing="10px">
  21. <image style="cursor:pointer" id="chooseAllBtn"
  22. src="/images/rightrightarrow_g.png" />
  23. <image style="cursor:pointer" id="chooseBtn"
  24. src="/images/rightarrow_g.png" />
  25. <image style="cursor:pointer" id="removeBtn"
  26. src="/images/leftarrow_g.png" />
  27. <image style="cursor:pointer" id="removeAllBtn"
  28. src="/images/leftleftarrow_g.png" />
  29. </vbox>
  30. <listbox id="chosenLb" vflex="true" width="250px"
  31. model="${arg.chosenDataModel}" >
  32. <listhead>
  33. <listheader label="Selected Column List"></listheader>
  34.  
  35. </listhead>
  36. <template name="model" var="each">
  37. <listitem>
  38.  
  39. <listcell label="${each.value}" >
  40. <separator orient="vertical" />
  41.  
  42. <b > <checkbox checked="${each.checked}" /></b>
  43. </listcell>
  44. </listitem>
  45. </template>
  46. </listbox>
  47.  
  48. <vbox spacing="10px">
  49. <image style="cursor:pointer" id="topBtn"
  50. src="/images/upuparrow_g.png" />
  51. <image style="cursor:pointer" id="upBtn"
  52. src="/images/uparrow_g.png" />
  53. <image style="cursor:pointer" id="downBtn"
  54. src="/images/downarrow_g.png" />
  55. <image style="cursor:pointer" id="bottomBtn"
  56. src="/images/downdownarrow_g.png" />
  57. </vbox>
  58.  
  59. </hlayout>
  60.  
  61. <checkbox onCheck="@command('select',param=each)" />
  62.  
  63.  
  64.  
  65. @Command("select")
  66. public void myMethod(@BindingParam("param") paramType param) {
  67. //Do your update thing here
  68.  
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement