@zeedhi/teknisa-components-vuetify 1.99.0 → 1.100.1
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.
|
@@ -1427,6 +1427,9 @@ let TekGrid$1 = class TekGrid extends ZdGridEditable {
|
|
|
1427
1427
|
this.scrollData.visibleData = this.instance.datasource.data;
|
|
1428
1428
|
}
|
|
1429
1429
|
}
|
|
1430
|
+
cellDoubleClick(row, column, event) {
|
|
1431
|
+
this.instance.cellDoubleClick(row, column, event, this.$el);
|
|
1432
|
+
}
|
|
1430
1433
|
getData() {
|
|
1431
1434
|
let data;
|
|
1432
1435
|
const groupColumns = !!this.instance.groupColumnNames.length;
|
|
@@ -1447,6 +1450,14 @@ let TekGrid$1 = class TekGrid extends ZdGridEditable {
|
|
|
1447
1450
|
this.instance.rowClick(row, event, this.$el);
|
|
1448
1451
|
}
|
|
1449
1452
|
}
|
|
1453
|
+
rowDoubleClick(row, event) {
|
|
1454
|
+
if (row.group || row.groupFooter || row.groupSummary) {
|
|
1455
|
+
this.instance.groupRowDoubleClick(row, event, this.$el);
|
|
1456
|
+
}
|
|
1457
|
+
else {
|
|
1458
|
+
this.instance.rowDoubleClick(row, event, this.$el);
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1450
1461
|
orderHeaders(headers) {
|
|
1451
1462
|
return headers.sort((a, b) => {
|
|
1452
1463
|
if (a.fixed === b.fixed)
|
|
@@ -1619,6 +1630,9 @@ __decorate([
|
|
|
1619
1630
|
__decorate([
|
|
1620
1631
|
PropWatch({ type: [String, Boolean], default: true })
|
|
1621
1632
|
], TekGrid$1.prototype, "mainGrid", void 0);
|
|
1633
|
+
__decorate([
|
|
1634
|
+
PropWatch({ type: [String], default: undefined })
|
|
1635
|
+
], TekGrid$1.prototype, "xlsDefaultType", void 0);
|
|
1622
1636
|
__decorate([
|
|
1623
1637
|
PropWatch({
|
|
1624
1638
|
type: [String, Boolean],
|
|
@@ -2113,6 +2127,9 @@ var __vue_render__$g = function () {
|
|
|
2113
2127
|
click: function ($event) {
|
|
2114
2128
|
return _vm.rowClick(item, $event)
|
|
2115
2129
|
},
|
|
2130
|
+
dblclick: function ($event) {
|
|
2131
|
+
return _vm.rowDoubleClick(item, $event)
|
|
2132
|
+
},
|
|
2116
2133
|
},
|
|
2117
2134
|
},
|
|
2118
2135
|
[
|
|
@@ -2247,6 +2264,9 @@ var __vue_render__$g = function () {
|
|
|
2247
2264
|
click: function ($event) {
|
|
2248
2265
|
return _vm.rowClick(item, $event)
|
|
2249
2266
|
},
|
|
2267
|
+
dblclick: function ($event) {
|
|
2268
|
+
return _vm.rowDoubleClick(item, $event)
|
|
2269
|
+
},
|
|
2250
2270
|
},
|
|
2251
2271
|
},
|
|
2252
2272
|
[
|
|
@@ -2383,6 +2403,25 @@ var __vue_render__$g = function () {
|
|
|
2383
2403
|
$event.id
|
|
2384
2404
|
);
|
|
2385
2405
|
},
|
|
2406
|
+
dblclick: function (
|
|
2407
|
+
$event
|
|
2408
|
+
) {
|
|
2409
|
+
_vm.cellDoubleClick(
|
|
2410
|
+
item,
|
|
2411
|
+
column,
|
|
2412
|
+
$event.event,
|
|
2413
|
+
_vm.canEditRowValues[
|
|
2414
|
+
_vm.rowKey(item)
|
|
2415
|
+
] &&
|
|
2416
|
+
Object.assign(
|
|
2417
|
+
{},
|
|
2418
|
+
column,
|
|
2419
|
+
cellsApplied
|
|
2420
|
+
).editable &&
|
|
2421
|
+
!item.groupFooter,
|
|
2422
|
+
$event.id
|
|
2423
|
+
);
|
|
2424
|
+
},
|
|
2386
2425
|
focus: function ($event) {
|
|
2387
2426
|
return _vm.editableCellFocus(
|
|
2388
2427
|
$event.component,
|
|
@@ -2701,6 +2740,13 @@ var __vue_render__$g = function () {
|
|
|
2701
2740
|
$event
|
|
2702
2741
|
)
|
|
2703
2742
|
},
|
|
2743
|
+
dblclick: function ($event) {
|
|
2744
|
+
return _vm.cellDoubleClick(
|
|
2745
|
+
item,
|
|
2746
|
+
column,
|
|
2747
|
+
$event
|
|
2748
|
+
)
|
|
2749
|
+
},
|
|
2704
2750
|
},
|
|
2705
2751
|
},
|
|
2706
2752
|
[
|
|
@@ -2837,7 +2883,7 @@ __vue_render__$g._withStripped = true;
|
|
|
2837
2883
|
/* style */
|
|
2838
2884
|
const __vue_inject_styles__$g = function (inject) {
|
|
2839
2885
|
if (!inject) return
|
|
2840
|
-
inject("data-v-
|
|
2886
|
+
inject("data-v-42e7ee20_0", { source: ".tek-grid .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.tek-grid .zd-grid-toolbar {\n height: 36px;\n}\n.tek-grid .zd-grid-toolbar .zd-grid-toolbar-slot {\n align-items: center;\n}\n.tek-grid .zd-grid-toolbar .toolbar-divider {\n margin: 10px;\n}\n.tek-grid .zd-grid-toolbar .toolbar-title {\n line-height: 22px;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button {\n display: inline-block;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button .v-icon {\n cursor: pointer;\n font-size: 15px;\n width: 15px;\n padding: 0 3px;\n opacity: 0;\n color: #ccc;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button.has-filter-data .v-icon {\n opacity: 1;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th:hover .tek-grid-column-filter-button .v-icon {\n opacity: 1;\n}\n.tek-grid table tbody tr.footer.theme--light {\n background: #f6f6f6;\n}\n.tek-grid table tbody tr.footer.theme--dark {\n background: #3b3b3b;\n}\n.tek-grid table tbody tr.footer td.zd-table-cell {\n font-weight: 700;\n}\n.tek-grid table tbody tr.summary {\n background: #eee;\n}\n.tek-grid table tbody tr.summary td.zd-table-cell {\n font-weight: 700;\n font-size: 15px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-first-group-cell {\n display: flex;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header {\n font-weight: bold;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container {\n display: flex;\n height: 100%;\n align-items: center;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation {\n top: unset;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation :not(.first-group) {\n margin-left: 10px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation.first-group {\n width: 14px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation:not(.first-group) {\n top: unset;\n margin-left: 10px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon {\n font-size: 21px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon.closed {\n transform: rotate(-90deg);\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container {\n position: sticky !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container .zd-table-group-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\n}\n.tek-grid table tbody tr.current td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.tek-grid table .tek-grid-header-group-identation {\n width: 22px;\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table .tek-grid-header-group-identation.first-group {\n width: 20px;\n}\n.tek-grid table .zd-table-two-plus-groups {\n display: flex !important;\n}\n.tek-grid table .zd-table-two-plus-groups .zd-table-cell-text {\n position: unset !important;\n}\n.tek-grid table .zd-table-two-plus-groups .tek-grid-body-group-identation {\n top: unset !important;\n}\n.tek-grid table .zd-table-two-plus-groups .tek-grid-body-group-identation:not(.first-group) {\n top: unset;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation {\n width: 8px;\n display: flex;\n position: relative;\n margin-left: 14px;\n height: 100%;\n border-left: solid 1px #ccc;\n}\n.tek-grid table .tek-grid-body-group-identation.first-group {\n width: 1rem;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer {\n height: 60%;\n border-bottom: solid 1px #ccc;\n top: -10%;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer-no-line {\n border-left: none;\n}\n.tek-grid table .footer .zd-grid-row-checkbox {\n display: none;\n}\n.tek-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.tek-grid-export-landscape i {\n transform: rotate(-90deg);\n}\n.tek-grid-export-multioption-text {\n padding-left: 3px;\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n cursor: default;\n}\n.tekgrid-actions-dropdown > * {\n display: block;\n}\n.tek-grid-column-filter-menu {\n padding: 12px 12px 0 12px;\n max-height: 300px;\n}\n.tek-grid-column-filter-menu.theme--light {\n background: #fff;\n}\n.tek-grid-column-filter-menu.theme--dark {\n background: #1e1e1e;\n}\n.filter-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.filter-helper-values-button.with-label {\n margin-top: 20px;\n}\n.filter-helper-values-option {\n cursor: pointer;\n}\n.filter-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
|
2841
2887
|
|
|
2842
2888
|
};
|
|
2843
2889
|
/* scoped */
|
|
@@ -1427,6 +1427,9 @@
|
|
|
1427
1427
|
this.scrollData.visibleData = this.instance.datasource.data;
|
|
1428
1428
|
}
|
|
1429
1429
|
}
|
|
1430
|
+
cellDoubleClick(row, column, event) {
|
|
1431
|
+
this.instance.cellDoubleClick(row, column, event, this.$el);
|
|
1432
|
+
}
|
|
1430
1433
|
getData() {
|
|
1431
1434
|
let data;
|
|
1432
1435
|
const groupColumns = !!this.instance.groupColumnNames.length;
|
|
@@ -1447,6 +1450,14 @@
|
|
|
1447
1450
|
this.instance.rowClick(row, event, this.$el);
|
|
1448
1451
|
}
|
|
1449
1452
|
}
|
|
1453
|
+
rowDoubleClick(row, event) {
|
|
1454
|
+
if (row.group || row.groupFooter || row.groupSummary) {
|
|
1455
|
+
this.instance.groupRowDoubleClick(row, event, this.$el);
|
|
1456
|
+
}
|
|
1457
|
+
else {
|
|
1458
|
+
this.instance.rowDoubleClick(row, event, this.$el);
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1450
1461
|
orderHeaders(headers) {
|
|
1451
1462
|
return headers.sort((a, b) => {
|
|
1452
1463
|
if (a.fixed === b.fixed)
|
|
@@ -1619,6 +1630,9 @@
|
|
|
1619
1630
|
__decorate([
|
|
1620
1631
|
vuetify.PropWatch({ type: [String, Boolean], default: true })
|
|
1621
1632
|
], TekGrid$1.prototype, "mainGrid", void 0);
|
|
1633
|
+
__decorate([
|
|
1634
|
+
vuetify.PropWatch({ type: [String], default: undefined })
|
|
1635
|
+
], TekGrid$1.prototype, "xlsDefaultType", void 0);
|
|
1622
1636
|
__decorate([
|
|
1623
1637
|
vuetify.PropWatch({
|
|
1624
1638
|
type: [String, Boolean],
|
|
@@ -2113,6 +2127,9 @@
|
|
|
2113
2127
|
click: function ($event) {
|
|
2114
2128
|
return _vm.rowClick(item, $event)
|
|
2115
2129
|
},
|
|
2130
|
+
dblclick: function ($event) {
|
|
2131
|
+
return _vm.rowDoubleClick(item, $event)
|
|
2132
|
+
},
|
|
2116
2133
|
},
|
|
2117
2134
|
},
|
|
2118
2135
|
[
|
|
@@ -2247,6 +2264,9 @@
|
|
|
2247
2264
|
click: function ($event) {
|
|
2248
2265
|
return _vm.rowClick(item, $event)
|
|
2249
2266
|
},
|
|
2267
|
+
dblclick: function ($event) {
|
|
2268
|
+
return _vm.rowDoubleClick(item, $event)
|
|
2269
|
+
},
|
|
2250
2270
|
},
|
|
2251
2271
|
},
|
|
2252
2272
|
[
|
|
@@ -2383,6 +2403,25 @@
|
|
|
2383
2403
|
$event.id
|
|
2384
2404
|
);
|
|
2385
2405
|
},
|
|
2406
|
+
dblclick: function (
|
|
2407
|
+
$event
|
|
2408
|
+
) {
|
|
2409
|
+
_vm.cellDoubleClick(
|
|
2410
|
+
item,
|
|
2411
|
+
column,
|
|
2412
|
+
$event.event,
|
|
2413
|
+
_vm.canEditRowValues[
|
|
2414
|
+
_vm.rowKey(item)
|
|
2415
|
+
] &&
|
|
2416
|
+
Object.assign(
|
|
2417
|
+
{},
|
|
2418
|
+
column,
|
|
2419
|
+
cellsApplied
|
|
2420
|
+
).editable &&
|
|
2421
|
+
!item.groupFooter,
|
|
2422
|
+
$event.id
|
|
2423
|
+
);
|
|
2424
|
+
},
|
|
2386
2425
|
focus: function ($event) {
|
|
2387
2426
|
return _vm.editableCellFocus(
|
|
2388
2427
|
$event.component,
|
|
@@ -2701,6 +2740,13 @@
|
|
|
2701
2740
|
$event
|
|
2702
2741
|
)
|
|
2703
2742
|
},
|
|
2743
|
+
dblclick: function ($event) {
|
|
2744
|
+
return _vm.cellDoubleClick(
|
|
2745
|
+
item,
|
|
2746
|
+
column,
|
|
2747
|
+
$event
|
|
2748
|
+
)
|
|
2749
|
+
},
|
|
2704
2750
|
},
|
|
2705
2751
|
},
|
|
2706
2752
|
[
|
|
@@ -2837,7 +2883,7 @@
|
|
|
2837
2883
|
/* style */
|
|
2838
2884
|
const __vue_inject_styles__$g = function (inject) {
|
|
2839
2885
|
if (!inject) return
|
|
2840
|
-
inject("data-v-
|
|
2886
|
+
inject("data-v-42e7ee20_0", { source: ".tek-grid .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.tek-grid .zd-grid-toolbar {\n height: 36px;\n}\n.tek-grid .zd-grid-toolbar .zd-grid-toolbar-slot {\n align-items: center;\n}\n.tek-grid .zd-grid-toolbar .toolbar-divider {\n margin: 10px;\n}\n.tek-grid .zd-grid-toolbar .toolbar-title {\n line-height: 22px;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button {\n display: inline-block;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button .v-icon {\n cursor: pointer;\n font-size: 15px;\n width: 15px;\n padding: 0 3px;\n opacity: 0;\n color: #ccc;\n}\n.tek-grid table thead tr th .tek-grid-column-filter-button.has-filter-data .v-icon {\n opacity: 1;\n color: var(--v-primary-base);\n}\n.tek-grid table thead tr th:hover .tek-grid-column-filter-button .v-icon {\n opacity: 1;\n}\n.tek-grid table tbody tr.footer.theme--light {\n background: #f6f6f6;\n}\n.tek-grid table tbody tr.footer.theme--dark {\n background: #3b3b3b;\n}\n.tek-grid table tbody tr.footer td.zd-table-cell {\n font-weight: 700;\n}\n.tek-grid table tbody tr.summary {\n background: #eee;\n}\n.tek-grid table tbody tr.summary td.zd-table-cell {\n font-weight: 700;\n font-size: 15px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-first-group-cell {\n display: flex;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header {\n font-weight: bold;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container {\n display: flex;\n height: 100%;\n align-items: center;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation {\n top: unset;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation :not(.first-group) {\n margin-left: 10px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation.first-group {\n width: 14px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-two-plus-container .tek-grid-body-group-identation:not(.first-group) {\n top: unset;\n margin-left: 10px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon {\n font-size: 21px;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .v-icon.closed {\n transform: rotate(-90deg);\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container {\n position: sticky !important;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-group-header .zd-table-group-container .zd-table-group-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n vertical-align: middle;\n}\n.tek-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\n}\n.tek-grid table tbody tr.current td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.tek-grid table .tek-grid-header-group-identation {\n width: 22px;\n display: inline-block;\n vertical-align: middle;\n}\n.tek-grid table .tek-grid-header-group-identation.first-group {\n width: 20px;\n}\n.tek-grid table .zd-table-two-plus-groups {\n display: flex !important;\n}\n.tek-grid table .zd-table-two-plus-groups .zd-table-cell-text {\n position: unset !important;\n}\n.tek-grid table .zd-table-two-plus-groups .tek-grid-body-group-identation {\n top: unset !important;\n}\n.tek-grid table .zd-table-two-plus-groups .tek-grid-body-group-identation:not(.first-group) {\n top: unset;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation {\n width: 8px;\n display: flex;\n position: relative;\n margin-left: 14px;\n height: 100%;\n border-left: solid 1px #ccc;\n}\n.tek-grid table .tek-grid-body-group-identation.first-group {\n width: 1rem;\n margin-left: 10px;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer {\n height: 60%;\n border-bottom: solid 1px #ccc;\n top: -10%;\n}\n.tek-grid table .tek-grid-body-group-identation.group-footer-no-line {\n border-left: none;\n}\n.tek-grid table .footer .zd-grid-row-checkbox {\n display: none;\n}\n.tek-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.tek-grid-export-landscape i {\n transform: rotate(-90deg);\n}\n.tek-grid-export-multioption-text {\n padding-left: 3px;\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n cursor: default;\n}\n.tekgrid-actions-dropdown > * {\n display: block;\n}\n.tek-grid-column-filter-menu {\n padding: 12px 12px 0 12px;\n max-height: 300px;\n}\n.tek-grid-column-filter-menu.theme--light {\n background: #fff;\n}\n.tek-grid-column-filter-menu.theme--dark {\n background: #1e1e1e;\n}\n.filter-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.filter-helper-values-button.with-label {\n margin-top: 20px;\n}\n.filter-helper-values-option {\n cursor: pointer;\n}\n.filter-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
|
2841
2887
|
|
|
2842
2888
|
};
|
|
2843
2889
|
/* scoped */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.100.1",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"vue": "2.7.*",
|
|
45
45
|
"vuetify": "2.6.*"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "ab5303595a8ea77628401599164a96f9fd24dc77"
|
|
48
48
|
}
|
|
@@ -27,6 +27,7 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
27
27
|
groupsOpened: boolean | string;
|
|
28
28
|
showSummaryTotal: boolean | string;
|
|
29
29
|
mainGrid: boolean | string;
|
|
30
|
+
xlsDefaultType: string;
|
|
30
31
|
showCheckboxAllFilter: boolean | string;
|
|
31
32
|
defaultFilter: IDictionary;
|
|
32
33
|
toolbarSlot: IComponentRender[];
|
|
@@ -62,8 +63,10 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
62
63
|
isCurrentRowGroup(row: IDictionary<any>): boolean;
|
|
63
64
|
isCurrentRow(row: IDictionary<any>): boolean;
|
|
64
65
|
getVisibleData(): void;
|
|
66
|
+
cellDoubleClick(row: IDictionary<any>, column: TekGridColumn, event: Event): void;
|
|
65
67
|
getData(): IDictionary<any>[];
|
|
66
|
-
rowClick(row: IDictionary<any>, event:
|
|
68
|
+
rowClick(row: IDictionary<any>, event: MouseEvent): void;
|
|
69
|
+
rowDoubleClick(row: IDictionary<any>, event: MouseEvent): void;
|
|
67
70
|
orderHeaders(headers: TekGridColumn[]): TekGridColumn[];
|
|
68
71
|
isGroupSelected(item: ITekGridGroupHeader): boolean;
|
|
69
72
|
isGroupSelectIndeterminate(item: ITekGridGroupHeader): boolean;
|