zet-lib 1.2.112 → 1.2.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/zdataTable.js +12 -21
- package/package.json +2 -2
package/lib/zdataTable.js
CHANGED
|
@@ -91,17 +91,17 @@ class dataTable {
|
|
|
91
91
|
if (this.levels.create) {
|
|
92
92
|
html += `<button title="${LANGUAGE.create_info}" class="btn create gridadd image-button boxy-small dimens2x" tabindex="0" aria-controls="DataTables_Table_0" type="button"><img src="/assets/icons/plus.svg" class="icons-bg-black"> ${LANGUAGE.create}</button>`
|
|
93
93
|
}
|
|
94
|
-
if (this.levels.
|
|
95
|
-
html += `<button title="
|
|
94
|
+
if (this.levels.import) {
|
|
95
|
+
html += `<button title="${LANGUAGE.import_info}" class="btn buttons-copy buttons-html5 copy gridimport boxy-small dimens2x image-button" type="button"><img src="/assets/icons/database-import.svg" class="icons-bg-black"> ${LANGUAGE.import}</span></span></button>`
|
|
96
96
|
}
|
|
97
97
|
if (this.levels.lock) {
|
|
98
|
-
html += `<button title="Lock/Unlock" style="background-color: #
|
|
98
|
+
html += `<button title="Lock/Unlock" style="background-color: #332D2D; color:white" class="btn btn-danger buttons-lock buttons-html5 copy gridlock boxy-small dimens2x image-button" data-bs-toggle="modal" data-bs-target="#grid-lock" type="button"><img src="/assets/icons/cloud-lock.svg" class="icons-bg-white"> Lock/Unlock</span></span></button>`
|
|
99
99
|
}
|
|
100
100
|
if (this.hasLevels) {
|
|
101
|
-
html += `<button title="Approval" style="background-color: #
|
|
101
|
+
html += `<button title="Approval" style="background-color: #E4A11B; color:white" class="btn buttons-html5 boxy-small dimens2x image-button" data-bs-toggle="modal" data-bs-target="#grid-approval" type="button"><img src="/assets/icons/rubber-stamp.svg" class="icons-bg-white"> Approval</span></span></button>`
|
|
102
102
|
}
|
|
103
|
-
html += `<button title="${LANGUAGE.settings}" class="btn buttons-excel buttons-html5 setting gridsettings boxy-small dimens2x image-button"
|
|
104
|
-
html += `<button class="btn refresh gridreload boxy-small dimens2x image-button" title="${LANGUAGE.grid_refresh}"
|
|
103
|
+
html += `<button title="${LANGUAGE.settings}" class="btn buttons-excel buttons-html5 setting gridsettings boxy-small dimens2x image-button" type="button" data-bs-toggle="modal" data-bs-target="#grid-modal"><img src="/assets/icons/settings.svg" class="icons-bg-black"> ${LANGUAGE.settings}</button>`
|
|
104
|
+
html += `<button class="btn refresh gridreload boxy-small dimens2x image-button" title="${LANGUAGE.grid_refresh}" aria-controls="DataTables_Table_0" type="button"><img src="/assets/icons/refresh.svg" class="icons-bg-black"></button>`
|
|
105
105
|
if (this.levels.export) {
|
|
106
106
|
html += `<div class="btn-group" role="group">
|
|
107
107
|
<button id="dropdownExport" type="button" class="btn dropdown-toggle boxy-small dimens2x image-button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
@@ -125,23 +125,23 @@ class dataTable {
|
|
|
125
125
|
get buttons2() {
|
|
126
126
|
let html = `<div class="dataTables_wrapper dt-bootstrap5 no-footer "><div class="dt-buttons btn-group flex-wrap">`
|
|
127
127
|
if (this.levels.create) {
|
|
128
|
-
html += `<button title="${LANGUAGE.create_info}" class="btn create gridadd image-button boxy-small dimens2x" tabindex="0" aria-controls="DataTables_Table_0" type="button"><img src="/assets/icons/plus.svg" class="icons-bg-black"
|
|
128
|
+
html += `<button title="${LANGUAGE.create_info}" class="btn create gridadd image-button boxy-small dimens2x" tabindex="0" aria-controls="DataTables_Table_0" type="button"><img src="/assets/icons/plus.svg" class="icons-bg-black"></button>`
|
|
129
129
|
}
|
|
130
130
|
if (this.levels.import) {
|
|
131
|
-
html += `<button title="${LANGUAGE.import_info}" class="btn buttons-copy buttons-html5 copy gridimport boxy-small dimens2x image-button" type="button"><img src="/assets/icons/database-import.svg" class="icons-bg-black">
|
|
131
|
+
html += `<button title="${LANGUAGE.import_info}" class="btn buttons-copy buttons-html5 copy gridimport boxy-small dimens2x image-button" type="button"><img src="/assets/icons/database-import.svg" class="icons-bg-black"> </span></span></button>`
|
|
132
132
|
}
|
|
133
133
|
if (this.levels.lock) {
|
|
134
|
-
html += `<button title="Lock/Unlock" style="background-color: #332D2D; color:white" class="btn btn-danger buttons-lock buttons-html5 copy gridlock boxy-small dimens2x image-button" data-bs-toggle="modal" data-bs-target="#grid-lock" type="button"><img src="/assets/icons/cloud-lock.svg" class="icons-bg-white">
|
|
134
|
+
html += `<button title="Lock/Unlock" style="background-color: #332D2D; color:white" class="btn btn-danger buttons-lock buttons-html5 copy gridlock boxy-small dimens2x image-button" data-bs-toggle="modal" data-bs-target="#grid-lock" type="button"><img src="/assets/icons/cloud-lock.svg" class="icons-bg-white"> </span></span></button>`
|
|
135
135
|
}
|
|
136
136
|
if (this.hasLevels) {
|
|
137
|
-
html += `<button title="Approval" style="background-color: #E4A11B; color:white" class="btn buttons-html5 boxy-small dimens2x image-button" data-bs-toggle="modal" data-bs-target="#grid-approval" type="button"><img src="/assets/icons/rubber-stamp.svg" class="icons-bg-white">
|
|
137
|
+
html += `<button title="Approval" style="background-color: #E4A11B; color:white" class="btn buttons-html5 boxy-small dimens2x image-button" data-bs-toggle="modal" data-bs-target="#grid-approval" type="button"><img src="/assets/icons/rubber-stamp.svg" class="icons-bg-white"> </span></span></button>`
|
|
138
138
|
}
|
|
139
|
-
html += `<button title="${LANGUAGE.settings}" class="btn buttons-excel buttons-html5 setting gridsettings boxy-small dimens2x image-button" type="button" data-bs-toggle="modal" data-bs-target="#grid-modal"><img src="/assets/icons/settings.svg" class="icons-bg-black"
|
|
139
|
+
html += `<button title="${LANGUAGE.settings}" class="btn buttons-excel buttons-html5 setting gridsettings boxy-small dimens2x image-button" type="button" data-bs-toggle="modal" data-bs-target="#grid-modal"><img src="/assets/icons/settings.svg" class="icons-bg-black"></button>`
|
|
140
140
|
html += `<button class="btn refresh gridreload boxy-small dimens2x image-button" title="${LANGUAGE.grid_refresh}" aria-controls="DataTables_Table_0" type="button"><img src="/assets/icons/refresh.svg" class="icons-bg-black"></button>`
|
|
141
141
|
if (this.levels.export) {
|
|
142
142
|
html += `<div class="btn-group" role="group">
|
|
143
143
|
<button id="dropdownExport" type="button" class="btn dropdown-toggle boxy-small dimens2x image-button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
144
|
-
<img src="/assets/icons/download.svg" class="icons-bg-black">
|
|
144
|
+
<img src="/assets/icons/download.svg" class="icons-bg-black">
|
|
145
145
|
</button>
|
|
146
146
|
<div class="dropdown-menu dimens3x" aria-labelledby="dropdownExport">`
|
|
147
147
|
html += `<a class="dropdown-header">Excel</a>`
|
|
@@ -242,14 +242,6 @@ class dataTable {
|
|
|
242
242
|
})</script>${Util.newLine}`
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
/*
|
|
246
|
-
Slug script change data table responsive or not
|
|
247
|
-
*/
|
|
248
|
-
let slugScript = ''
|
|
249
|
-
if (this.gridType == 2) {
|
|
250
|
-
slugScript += `$("#dataTable").removeClass("dataTable");`
|
|
251
|
-
}
|
|
252
|
-
|
|
253
245
|
script += `<script type="text/javascript">
|
|
254
246
|
$(function () {
|
|
255
247
|
$("#ck_all").on('click', function () {
|
|
@@ -285,7 +277,6 @@ $(".btn-save-unlock").on("click", function () {
|
|
|
285
277
|
})
|
|
286
278
|
|
|
287
279
|
$("#zgrid_default_type").val(${this.gridType});
|
|
288
|
-
${slugScript}
|
|
289
280
|
|
|
290
281
|
})</script>${Util.newLine}`
|
|
291
282
|
|
package/package.json
CHANGED