a broker system for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
715B

  1. var export_loans = {
  2. "view": "popup",
  3. "id": "export_loans_popup",
  4. "css": "export_loans_popup",
  5. "position":"center",
  6. head:"This window can be moved",
  7. close : true ,
  8. "modal" :true,
  9. "move" : true,
  10. "animation": true,
  11. "width": 400,
  12. "height": 400,
  13. "body":{
  14. "id": 1603044245806,
  15. "rows": [
  16. { "value": 0, "minWidth": 0, "minHeight": 0, "stroke": "8", "view": "gage", "id": "export_loan_gage" },
  17. { "label": "Download File", "view": "button", "height": 38 , "click": export_loans_close}
  18. ]
  19. }
  20. };
  21. var export_loans_popup = webix.ui(export_loans);
  22. function export_loans_close() {
  23. export_loans_popup.hide();
  24. $$("export_loan_gage").setValue(0);
  25. }