Built files from Bizgaze WebServer
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.

table.component.js 1.5KB

1234567891011121314151617181920212223242526272829
  1. var Unibase;
  2. (function (Unibase) {
  3. let Forms;
  4. (function (Forms) {
  5. let Controls;
  6. (function (Controls) {
  7. class Component_Table {
  8. init(callback) {
  9. }
  10. loadControl(containerid, prop) {
  11. var Isrequired = prop.IsRequired != true ? 'hidden' : '';
  12. var required = prop.IsRequired != true ? '' : 'required';
  13. var html = `<div class="row" id="div_` + prop.DocTypeName + `" ><table class="table table-striped table-bordered" id="tbl_` + prop.DocTypeName + `"><thead><tr style="background-color:aquamarine" id="tr_` + prop.DocTypeName + `"></tr></thead><tbody id="tbd_` + prop.DocTypeName + `"></tbody></table></div>`;
  14. $("#" + containerid).html(html);
  15. }
  16. loadControlSettings(controlsettingjson, formpropertyid) {
  17. throw new Error("Method not implemented.");
  18. }
  19. loadPropertySettings(propertysettings, formpropertyid) {
  20. throw new Error("Method not implemented.");
  21. }
  22. bindEditFormDetails(formpropertyid, propval, DocPropertyName) {
  23. throw new Error("Method not implemented.");
  24. }
  25. }
  26. Controls.Component_Table = Component_Table;
  27. })(Controls = Forms.Controls || (Forms.Controls = {}));
  28. })(Forms = Unibase.Forms || (Unibase.Forms = {}));
  29. })(Unibase || (Unibase = {}));