a broker system for Supercredit
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

67 lines
1.7KB

  1. var layout= {
  2. id: 'summary_layout',
  3. css: 'summary_layout',
  4. "rows": [
  5. {
  6. view: "toolbar", id:"topMenu", elements:[
  7. {
  8. view: "icon", icon: "mdi mdi-menu",
  9. click: function(){
  10. if( $$("menu").config.hidden){
  11. $$("menu").show();
  12. }
  13. else
  14. $$("menu").hide();
  15. }
  16. },
  17. {
  18. view: "label",
  19. label: ""
  20. }
  21. ]
  22. },
  23. { "view": "template", id:"worksapce", "template": "Content", "role": "placeholder" },
  24. { "view": "template", id:"footer", "template": "Footer ", "role": "placeholder", "height": 50 }
  25. ]
  26. }
  27. //main area
  28. webix.ui(layout)
  29. //side menu
  30. webix.ready(function(){
  31. webix.ui({
  32. view: "sidemenu",
  33. id: "menu",
  34. width: 200,
  35. position: "left",
  36. state:function(state){
  37. var toolbarHeight = $$("header").$height;
  38. state.top = toolbarHeight;
  39. state.height -= toolbarHeight;
  40. },
  41. css: "my_menu",
  42. body:{
  43. view:"list",
  44. borderless:true,
  45. scroll: false,
  46. template: "<span class='webix_icon mdi mdi-#icon#'></span> #value#",
  47. data:[
  48. {id: 1, value: "Customers", icon: "account"},
  49. {id: 2, value: "Products", icon: "cube"},
  50. {id: 3, value: "Reports", icon: "chart-bar"},
  51. {id: 4, value: "Archives", icon: "database"},
  52. {id: 5, value: "Settings", icon: "cogs"}
  53. ],
  54. select:true,
  55. type:{
  56. height: 40
  57. }
  58. }
  59. });
  60. initTopMenu($$('summary_layout'), $$('topMenu'));
  61. });