Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. {
  2. "listcurrencies": {
  3. "title": "{!!List currencies!!}",
  4. "menus": {
  5. "m1": {
  6. "type": "topmenu",
  7. "combine": "replace",
  8. "items": [
  9. {
  10. "title": "{!!Create new currency!!}",
  11. "action": {
  12. "type": "nav",
  13. "linktype": "window",
  14. "link": "newcurrency"
  15. }
  16. }
  17. ]
  18. }
  19. },
  20. "elements": {
  21. "root": {
  22. "width": "100%",
  23. "height": "auto",
  24. "layout": {
  25. "type": "VerticalList",
  26. "list": [
  27. "currency"
  28. ]
  29. },
  30. "children": {
  31. "currency": {
  32. "type": "entitylist",
  33. "entity": "currency",
  34. "data-source": {
  35. "currency": "currency?_with=country"
  36. },
  37. "preload": 0,
  38. "autoload": 1,
  39. "entitymenu": {
  40.  
  41. },
  42. "cells": [
  43. {
  44. "value": "$id - $sign - $country.code",
  45. "class": "header",
  46. "action": {
  47. "type": "nav",
  48. "linktype": "window",
  49. "link": "editcurrency?id=$id"
  50. }
  51. },
  52. "country"
  53. ]
  54. }
  55. }
  56. }
  57. }
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement