Guest User

Untitled

a guest
Oct 18th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <%
  2. ["customersOnTour"].each {
  3. println """
  4. <script type="text/javascript">
  5. \$(function()
  6. {
  7. \$("#${it}").pickList({
  8. sourceListLabel: "Unadded",
  9. targetListLabel: "Added",
  10. addAllLabel: "Add All",
  11. addLabel: "Add",
  12. removeAllLabel: "Remove All",
  13. removeLabel: "Remove",
  14. sortAttribute: "value",
  15. items:
  16. [
  17. {
  18. value: "",
  19. label: "",
  20. selected: false
  21. }
  22. ]
  23. });
  24. });
  25. </script>
  26. """
  27. }
  28. %>
Add Comment
Please, Sign In to add comment