Advertisement
gicristhie

Untitled

Feb 28th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. ukey: function () {
  2.  
  3. var ukey =
  4. "<div class='tab-pane ' id='ukeyCustomerTab' role='tabpanel'>" +
  5. "<div class='modal-body'>" +
  6. <!-- Add Button -->
  7. "<button class='btn btn-light btnCollapse' type='button' id='collapseUkeyButton' data-toggle='collapse' data-target='#collapseAddUkeyCustomer' aria-expanded='false' aria-controls='collapseExample' disabled>"+App.lang.get("add") + "</button>"+
  8. "<div class='collapse' id='collapseAddUkeyCustomer'>"+
  9. "<div class='card card-body'>"+
  10. <!-- Search box -->
  11. "<input type='text' class='myInput' id='ukeyLinkSearch' list='ukeyLinkList' onkeyup='App.reg.customers.searchLinkUkey()' placeholder='" + App.lang.get("search_for") + App.lang.get("ukey") +"'>" +
  12. <!-- Save button -->
  13. "<div class='text-right mt-3'><button type='button' class='btn btn-outline-secondary' style=' cursor: pointer;' onclick='App.reg.customers.addUkeyLink()'>" + App.lang.get("save") + "<i class='far fa-save'></i></button></div>"+
  14. "</div>"+
  15. "</div>"+
  16.  
  17. <!-- -->
  18. <!-- -->
  19. "<div class='table-responsive' >" +
  20. "<table class='table table-striped table-hover'>" +
  21. "<thead>" +
  22. "<tr style='font-size: small;'>" +
  23. "<th scope='col'>" + App.lang.get("ukey") + "</th>" +
  24. "<th scope='col'>" + App.lang.get("driver") + "</th>" +
  25. "<th scope='col' style='text-align: right'>" + App.lang.get("del") + "</th>" +
  26. "</tr>" +
  27. "</thead>" +
  28. "<tbody id='ukeyCustomerList'></tbody>" +
  29. "</table>"+
  30. "</div>"+
  31. "<p style='font-size: small;' id='totalUkey' class='text-right font-weight-bold'></p>"+
  32. "<hr>" +
  33. "</div>" +
  34. "</div>";
  35.  
  36.  
  37. return ukey;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement