jqwidgets-ng 14.1.17 → 14.1.19
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/esm2020/jqxcheckboxgroup/angular_jqxcheckboxgroup.mjs +264 -0
- package/esm2020/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.mjs +21 -0
- package/esm2020/jqxcheckboxgroup/index.mjs +1 -0
- package/esm2020/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.mjs +4 -0
- package/esm2020/jqxcheckboxgroup/public_api.mjs +2 -0
- package/esm2020/jqxdropdownlist/angular_jqxdropdownlist.mjs +16 -2
- package/esm2020/jqxgrid/angular_jqxgrid.mjs +16 -2
- package/esm2020/jqxradiobuttongroup/angular_jqxradiobuttongroup.mjs +261 -0
- package/esm2020/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.mjs +21 -0
- package/esm2020/jqxradiobuttongroup/index.mjs +1 -0
- package/esm2020/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.mjs +4 -0
- package/esm2020/jqxradiobuttongroup/public_api.mjs +2 -0
- package/fesm2015/jqwidgets-ng-jqxcheckboxgroup.mjs +292 -0
- package/fesm2015/jqwidgets-ng-jqxdropdownlist.mjs +16 -2
- package/fesm2015/jqwidgets-ng-jqxgrid.mjs +16 -2
- package/fesm2015/jqwidgets-ng-jqxradiobuttongroup.mjs +289 -0
- package/fesm2020/jqwidgets-ng-jqxcheckboxgroup.mjs +292 -0
- package/fesm2020/jqwidgets-ng-jqxdropdownlist.mjs +16 -2
- package/fesm2020/jqwidgets-ng-jqxgrid.mjs +16 -2
- package/fesm2020/jqwidgets-ng-jqxradiobuttongroup.mjs +289 -0
- package/jqwidgets.d.ts +65 -0
- package/jqxcheckboxgroup/angular_jqxcheckboxgroup.d.ts +57 -0
- package/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.d.ts +8 -0
- package/jqxcheckboxgroup/index.d.ts +1 -0
- package/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.d.ts +5 -0
- package/jqxcheckboxgroup/package.json +13 -0
- package/jqxcheckboxgroup/public_api.d.ts +2 -0
- package/jqxdropdownlist/angular_jqxdropdownlist.d.ts +3 -1
- package/jqxgrid/angular_jqxgrid.d.ts +3 -1
- package/jqxradiobuttongroup/angular_jqxradiobuttongroup.d.ts +56 -0
- package/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.d.ts +8 -0
- package/jqxradiobuttongroup/index.d.ts +1 -0
- package/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.d.ts +5 -0
- package/jqxradiobuttongroup/package.json +13 -0
- package/jqxradiobuttongroup/public_api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
/// <reference path="../../jqwidgets.d.ts" />
|
|
2
|
+
/// <reference path="../../jqwidgets.d.ts" />
|
|
3
|
+
import { Component, Input } from '@angular/core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class jqxCheckBoxGroupComponent {
|
|
6
|
+
constructor(containerElement) {
|
|
7
|
+
this.autoCreate = true;
|
|
8
|
+
this.properties = ['change', 'disabled', 'items', 'value', 'layout', 'labelPosition', 'rtl', 'theme'];
|
|
9
|
+
this.elementRef = containerElement;
|
|
10
|
+
}
|
|
11
|
+
ngOnInit() {
|
|
12
|
+
if (this.autoCreate) {
|
|
13
|
+
this.createComponent();
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
;
|
|
17
|
+
ngOnChanges(changes) {
|
|
18
|
+
if (this.host) {
|
|
19
|
+
for (let i = 0; i < this.properties.length; i++) {
|
|
20
|
+
let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
|
|
21
|
+
let areEqual = false;
|
|
22
|
+
if (this[attrName] !== undefined) {
|
|
23
|
+
if (typeof this[attrName] === 'object') {
|
|
24
|
+
if (this[attrName] instanceof Array) {
|
|
25
|
+
areEqual = this.arraysEqual(this[attrName], this.host.jqxCheckBoxGroup(this.properties[i]));
|
|
26
|
+
}
|
|
27
|
+
if (areEqual) {
|
|
28
|
+
return false;
|
|
29
|
+
}
|
|
30
|
+
this.host.jqxCheckBoxGroup(this.properties[i], this[attrName]);
|
|
31
|
+
continue;
|
|
32
|
+
}
|
|
33
|
+
if (this[attrName] !== this.host.jqxCheckBoxGroup(this.properties[i])) {
|
|
34
|
+
this.host.jqxCheckBoxGroup(this.properties[i], this[attrName]);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
arraysEqual(attrValue, hostValue) {
|
|
41
|
+
if ((attrValue && !hostValue) || (!attrValue && hostValue)) {
|
|
42
|
+
return false;
|
|
43
|
+
}
|
|
44
|
+
if (attrValue.length != hostValue.length) {
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
for (let i = 0; i < attrValue.length; i++) {
|
|
48
|
+
if (attrValue[i] !== hostValue[i]) {
|
|
49
|
+
return false;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
return true;
|
|
53
|
+
}
|
|
54
|
+
manageAttributes() {
|
|
55
|
+
let options = {};
|
|
56
|
+
for (let i = 0; i < this.properties.length; i++) {
|
|
57
|
+
let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
|
|
58
|
+
if (this[attrName] !== undefined) {
|
|
59
|
+
options[this.properties[i]] = this[attrName];
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
return options;
|
|
63
|
+
}
|
|
64
|
+
moveClasses(parentEl, childEl) {
|
|
65
|
+
let classes = parentEl.classList;
|
|
66
|
+
if (classes.length > 0) {
|
|
67
|
+
childEl.classList.add(...classes);
|
|
68
|
+
}
|
|
69
|
+
parentEl.className = '';
|
|
70
|
+
}
|
|
71
|
+
moveStyles(parentEl, childEl) {
|
|
72
|
+
let style = parentEl.style.cssText;
|
|
73
|
+
childEl.style.cssText = style;
|
|
74
|
+
parentEl.style.cssText = '';
|
|
75
|
+
}
|
|
76
|
+
createComponent(options) {
|
|
77
|
+
if (this.host) {
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
if (options) {
|
|
81
|
+
JQXLite.extend(options, this.manageAttributes());
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
options = this.manageAttributes();
|
|
85
|
+
}
|
|
86
|
+
this.host = JQXLite(this.elementRef.nativeElement.firstChild);
|
|
87
|
+
this.moveClasses(this.elementRef.nativeElement, this.host[0]);
|
|
88
|
+
this.moveStyles(this.elementRef.nativeElement, this.host[0]);
|
|
89
|
+
this.__wireEvents__();
|
|
90
|
+
this.widgetObject = jqwidgets.createInstance(this.host, 'jqxCheckBoxGroup', options);
|
|
91
|
+
}
|
|
92
|
+
createWidget(options) {
|
|
93
|
+
this.createComponent(options);
|
|
94
|
+
}
|
|
95
|
+
__updateRect__() {
|
|
96
|
+
if (this.host)
|
|
97
|
+
this.host.css({ width: this.attrWidth, height: this.attrHeight });
|
|
98
|
+
}
|
|
99
|
+
setOptions(options) {
|
|
100
|
+
this.host.jqxCheckBoxGroup('setOptions', options);
|
|
101
|
+
}
|
|
102
|
+
// jqxCheckBoxGroupComponent properties
|
|
103
|
+
change(arg) {
|
|
104
|
+
if (arg !== undefined) {
|
|
105
|
+
this.host.jqxCheckBoxGroup('change', arg);
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
return this.host.jqxCheckBoxGroup('change');
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
disabled(arg) {
|
|
112
|
+
if (arg !== undefined) {
|
|
113
|
+
this.host.jqxCheckBoxGroup('disabled', arg);
|
|
114
|
+
}
|
|
115
|
+
else {
|
|
116
|
+
return this.host.jqxCheckBoxGroup('disabled');
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
items(arg) {
|
|
120
|
+
if (arg !== undefined) {
|
|
121
|
+
this.host.jqxCheckBoxGroup('items', arg);
|
|
122
|
+
}
|
|
123
|
+
else {
|
|
124
|
+
return this.host.jqxCheckBoxGroup('items');
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
value(arg) {
|
|
128
|
+
if (arg !== undefined) {
|
|
129
|
+
this.host.jqxCheckBoxGroup('value', arg);
|
|
130
|
+
}
|
|
131
|
+
else {
|
|
132
|
+
return this.host.jqxCheckBoxGroup('value');
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
layout(arg) {
|
|
136
|
+
if (arg !== undefined) {
|
|
137
|
+
this.host.jqxCheckBoxGroup('layout', arg);
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
return this.host.jqxCheckBoxGroup('layout');
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
labelPosition(arg) {
|
|
144
|
+
if (arg !== undefined) {
|
|
145
|
+
this.host.jqxCheckBoxGroup('labelPosition', arg);
|
|
146
|
+
}
|
|
147
|
+
else {
|
|
148
|
+
return this.host.jqxCheckBoxGroup('labelPosition');
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
rtl(arg) {
|
|
152
|
+
if (arg !== undefined) {
|
|
153
|
+
this.host.jqxCheckBoxGroup('rtl', arg);
|
|
154
|
+
}
|
|
155
|
+
else {
|
|
156
|
+
return this.host.jqxCheckBoxGroup('rtl');
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
theme(arg) {
|
|
160
|
+
if (arg !== undefined) {
|
|
161
|
+
this.host.jqxCheckBoxGroup('theme', arg);
|
|
162
|
+
}
|
|
163
|
+
else {
|
|
164
|
+
return this.host.jqxCheckBoxGroup('theme');
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
// jqxCheckBoxGroupComponent functions
|
|
168
|
+
getValue() {
|
|
169
|
+
return this.host.jqxCheckBoxGroup('getValue');
|
|
170
|
+
}
|
|
171
|
+
getValueAt(index) {
|
|
172
|
+
return this.host.jqxCheckBoxGroup('getValueAt', index);
|
|
173
|
+
}
|
|
174
|
+
enableAt(index) {
|
|
175
|
+
this.host.jqxCheckBoxGroup('enableAt', index);
|
|
176
|
+
}
|
|
177
|
+
disableAt(index) {
|
|
178
|
+
this.host.jqxCheckBoxGroup('disableAt', index);
|
|
179
|
+
}
|
|
180
|
+
checkAt(index) {
|
|
181
|
+
this.host.jqxCheckBoxGroup('checkAt', index);
|
|
182
|
+
}
|
|
183
|
+
uncheckAt(index) {
|
|
184
|
+
this.host.jqxCheckBoxGroup('uncheckAt', index);
|
|
185
|
+
}
|
|
186
|
+
uncheckAll() {
|
|
187
|
+
this.host.jqxCheckBoxGroup('uncheckAll');
|
|
188
|
+
}
|
|
189
|
+
checkAll() {
|
|
190
|
+
this.host.jqxCheckBoxGroup('checkAll');
|
|
191
|
+
}
|
|
192
|
+
checkValue(value) {
|
|
193
|
+
this.host.jqxCheckBoxGroup('checkValue', value);
|
|
194
|
+
}
|
|
195
|
+
uncheckValue(value) {
|
|
196
|
+
this.host.jqxCheckBoxGroup('uncheckValue', value);
|
|
197
|
+
}
|
|
198
|
+
disable() {
|
|
199
|
+
this.host.jqxCheckBoxGroup('disable');
|
|
200
|
+
}
|
|
201
|
+
destroy() {
|
|
202
|
+
this.host.jqxCheckBoxGroup('destroy');
|
|
203
|
+
}
|
|
204
|
+
enable() {
|
|
205
|
+
this.host.jqxCheckBoxGroup('enable');
|
|
206
|
+
}
|
|
207
|
+
render() {
|
|
208
|
+
this.host.jqxCheckBoxGroup('render');
|
|
209
|
+
}
|
|
210
|
+
val(value) {
|
|
211
|
+
if (value !== undefined) {
|
|
212
|
+
return this.host.jqxCheckBoxGroup('val', value);
|
|
213
|
+
}
|
|
214
|
+
else {
|
|
215
|
+
return this.host.jqxCheckBoxGroup('val');
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
;
|
|
219
|
+
// jqxCheckBoxGroupComponent events
|
|
220
|
+
__wireEvents__() {
|
|
221
|
+
}
|
|
222
|
+
} //jqxCheckBoxGroupComponent
|
|
223
|
+
jqxCheckBoxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
224
|
+
jqxCheckBoxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxCheckBoxGroupComponent, selector: "jqxCheckBoxGroup", inputs: { attrChange: ["change", "attrChange"], attrDisabled: ["disabled", "attrDisabled"], attrItems: ["items", "attrItems"], attrValue: ["value", "attrValue"], attrLayout: ["layout", "attrLayout"], attrLabelPosition: ["labelPosition", "attrLabelPosition"], attrRtl: ["rtl", "attrRtl"], attrTheme: ["theme", "attrTheme"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true });
|
|
225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupComponent, decorators: [{
|
|
226
|
+
type: Component,
|
|
227
|
+
args: [{
|
|
228
|
+
selector: 'jqxCheckBoxGroup',
|
|
229
|
+
template: '<div><ng-content></ng-content></div>'
|
|
230
|
+
}]
|
|
231
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { attrChange: [{
|
|
232
|
+
type: Input,
|
|
233
|
+
args: ['change']
|
|
234
|
+
}], attrDisabled: [{
|
|
235
|
+
type: Input,
|
|
236
|
+
args: ['disabled']
|
|
237
|
+
}], attrItems: [{
|
|
238
|
+
type: Input,
|
|
239
|
+
args: ['items']
|
|
240
|
+
}], attrValue: [{
|
|
241
|
+
type: Input,
|
|
242
|
+
args: ['value']
|
|
243
|
+
}], attrLayout: [{
|
|
244
|
+
type: Input,
|
|
245
|
+
args: ['layout']
|
|
246
|
+
}], attrLabelPosition: [{
|
|
247
|
+
type: Input,
|
|
248
|
+
args: ['labelPosition']
|
|
249
|
+
}], attrRtl: [{
|
|
250
|
+
type: Input,
|
|
251
|
+
args: ['rtl']
|
|
252
|
+
}], attrTheme: [{
|
|
253
|
+
type: Input,
|
|
254
|
+
args: ['theme']
|
|
255
|
+
}], attrWidth: [{
|
|
256
|
+
type: Input,
|
|
257
|
+
args: ['width']
|
|
258
|
+
}], attrHeight: [{
|
|
259
|
+
type: Input,
|
|
260
|
+
args: ['height']
|
|
261
|
+
}], autoCreate: [{
|
|
262
|
+
type: Input,
|
|
263
|
+
args: ['auto-create']
|
|
264
|
+
}] } });
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { FormsModule } from '@angular/forms';
|
|
3
|
+
import { jqxCheckBoxGroupComponent } from './angular_jqxcheckboxgroup';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class jqxCheckBoxGroupModule {
|
|
6
|
+
}
|
|
7
|
+
jqxCheckBoxGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
+
jqxCheckBoxGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, declarations: [jqxCheckBoxGroupComponent], imports: [FormsModule], exports: [jqxCheckBoxGroupComponent] });
|
|
9
|
+
jqxCheckBoxGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, imports: [[
|
|
10
|
+
FormsModule
|
|
11
|
+
]] });
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, decorators: [{
|
|
13
|
+
type: NgModule,
|
|
14
|
+
args: [{
|
|
15
|
+
imports: [
|
|
16
|
+
FormsModule
|
|
17
|
+
],
|
|
18
|
+
declarations: [jqxCheckBoxGroupComponent],
|
|
19
|
+
exports: [jqxCheckBoxGroupComponent]
|
|
20
|
+
}]
|
|
21
|
+
}] });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './public_api';
|
|
@@ -12,7 +12,7 @@ const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR = {
|
|
|
12
12
|
export class jqxDropDownListComponent {
|
|
13
13
|
constructor(containerElement) {
|
|
14
14
|
this.autoCreate = true;
|
|
15
|
-
this.properties = ['autoOpen', 'autoDropDownHeight', 'animationType', 'checkboxes', 'closeDelay', 'disabled', 'displayMember', 'dropDownHorizontalAlignment', 'dropDownVerticalAlignment', 'dropDownHeight', 'dropDownWidth', 'enableSelection', 'enableBrowserBoundsDetection', 'enableHover', 'filterable', 'filterHeight', 'filterDelay', 'filterPlaceHolder', 'height', 'incrementalSearch', 'incrementalSearchDelay', 'itemHeight', 'openDelay', 'placeHolder', 'popupZIndex', 'rtl', 'renderer', 'selectionRenderer', 'searchMode', 'source', 'selectedIndex', 'theme', 'template', 'valueMember', 'width'];
|
|
15
|
+
this.properties = ['autoOpen', 'autoDropDownHeight', 'animationType', 'checkboxes', 'closeDelay', 'disabled', 'displayMember', 'dropDownHorizontalAlignment', 'dropDownVerticalAlignment', 'dropDownHeight', 'dropDownWidth', 'enableSelection', 'enableBrowserBoundsDetection', 'enableHover', 'filterable', 'filterHeight', 'filterDelay', 'filterPlaceHolder', 'height', 'incrementalSearch', 'incrementalSearchDelay', 'itemHeight', 'openDelay', 'placeHolder', 'popupZIndex', 'rtl', 'renderer', 'selectionRenderer', 'searchMode', 'source', 'selectedIndex', 'scrollBarSize', 'theme', 'template', 'valueMember', 'width'];
|
|
16
16
|
this.onTouchedCallback = noop;
|
|
17
17
|
this.onChangeCallback = noop;
|
|
18
18
|
// jqxDropDownListComponent events
|
|
@@ -501,6 +501,17 @@ export class jqxDropDownListComponent {
|
|
|
501
501
|
return this.host.jqxDropDownList('selectedIndex');
|
|
502
502
|
}
|
|
503
503
|
}
|
|
504
|
+
scrollBarSize(arg) {
|
|
505
|
+
if (this.autoCreate && !this.host) {
|
|
506
|
+
this.createComponent();
|
|
507
|
+
}
|
|
508
|
+
if (arg !== undefined) {
|
|
509
|
+
this.host.jqxDropDownList('scrollBarSize', arg);
|
|
510
|
+
}
|
|
511
|
+
else {
|
|
512
|
+
return this.host.jqxDropDownList('scrollBarSize');
|
|
513
|
+
}
|
|
514
|
+
}
|
|
504
515
|
theme(arg) {
|
|
505
516
|
if (this.autoCreate && !this.host) {
|
|
506
517
|
this.createComponent();
|
|
@@ -801,7 +812,7 @@ export class jqxDropDownListComponent {
|
|
|
801
812
|
}
|
|
802
813
|
} //jqxDropDownListComponent
|
|
803
814
|
jqxDropDownListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDropDownListComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
804
|
-
jqxDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxDropDownListComponent, selector: "jqxDropDownList", inputs: { attrAutoOpen: ["autoOpen", "attrAutoOpen"], attrAutoDropDownHeight: ["autoDropDownHeight", "attrAutoDropDownHeight"], attrAnimationType: ["animationType", "attrAnimationType"], attrCheckboxes: ["checkboxes", "attrCheckboxes"], attrCloseDelay: ["closeDelay", "attrCloseDelay"], attrDisabled: ["disabled", "attrDisabled"], attrDisplayMember: ["displayMember", "attrDisplayMember"], attrDropDownHorizontalAlignment: ["dropDownHorizontalAlignment", "attrDropDownHorizontalAlignment"], attrDropDownVerticalAlignment: ["dropDownVerticalAlignment", "attrDropDownVerticalAlignment"], attrDropDownHeight: ["dropDownHeight", "attrDropDownHeight"], attrDropDownWidth: ["dropDownWidth", "attrDropDownWidth"], attrEnableSelection: ["enableSelection", "attrEnableSelection"], attrEnableBrowserBoundsDetection: ["enableBrowserBoundsDetection", "attrEnableBrowserBoundsDetection"], attrEnableHover: ["enableHover", "attrEnableHover"], attrFilterable: ["filterable", "attrFilterable"], attrFilterHeight: ["filterHeight", "attrFilterHeight"], attrFilterDelay: ["filterDelay", "attrFilterDelay"], attrFilterPlaceHolder: ["filterPlaceHolder", "attrFilterPlaceHolder"], attrIncrementalSearch: ["incrementalSearch", "attrIncrementalSearch"], attrIncrementalSearchDelay: ["incrementalSearchDelay", "attrIncrementalSearchDelay"], attrItemHeight: ["itemHeight", "attrItemHeight"], attrOpenDelay: ["openDelay", "attrOpenDelay"], attrPlaceHolder: ["placeHolder", "attrPlaceHolder"], attrPopupZIndex: ["popupZIndex", "attrPopupZIndex"], attrRtl: ["rtl", "attrRtl"], attrRenderer: ["renderer", "attrRenderer"], attrSelectionRenderer: ["selectionRenderer", "attrSelectionRenderer"], attrSearchMode: ["searchMode", "attrSearchMode"], attrSource: ["source", "attrSource"], attrSelectedIndex: ["selectedIndex", "attrSelectedIndex"], attrTheme: ["theme", "attrTheme"], attrTemplate: ["template", "attrTemplate"], attrValueMember: ["valueMember", "attrValueMember"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, outputs: { onBindingComplete: "onBindingComplete", onClose: "onClose", onCheckChange: "onCheckChange", onChange: "onChange", onOpen: "onOpen", onSelect: "onSelect", onUnselect: "onUnselect" }, providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
815
|
+
jqxDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxDropDownListComponent, selector: "jqxDropDownList", inputs: { attrAutoOpen: ["autoOpen", "attrAutoOpen"], attrAutoDropDownHeight: ["autoDropDownHeight", "attrAutoDropDownHeight"], attrAnimationType: ["animationType", "attrAnimationType"], attrCheckboxes: ["checkboxes", "attrCheckboxes"], attrCloseDelay: ["closeDelay", "attrCloseDelay"], attrDisabled: ["disabled", "attrDisabled"], attrDisplayMember: ["displayMember", "attrDisplayMember"], attrDropDownHorizontalAlignment: ["dropDownHorizontalAlignment", "attrDropDownHorizontalAlignment"], attrDropDownVerticalAlignment: ["dropDownVerticalAlignment", "attrDropDownVerticalAlignment"], attrDropDownHeight: ["dropDownHeight", "attrDropDownHeight"], attrDropDownWidth: ["dropDownWidth", "attrDropDownWidth"], attrEnableSelection: ["enableSelection", "attrEnableSelection"], attrEnableBrowserBoundsDetection: ["enableBrowserBoundsDetection", "attrEnableBrowserBoundsDetection"], attrEnableHover: ["enableHover", "attrEnableHover"], attrFilterable: ["filterable", "attrFilterable"], attrFilterHeight: ["filterHeight", "attrFilterHeight"], attrFilterDelay: ["filterDelay", "attrFilterDelay"], attrFilterPlaceHolder: ["filterPlaceHolder", "attrFilterPlaceHolder"], attrIncrementalSearch: ["incrementalSearch", "attrIncrementalSearch"], attrIncrementalSearchDelay: ["incrementalSearchDelay", "attrIncrementalSearchDelay"], attrItemHeight: ["itemHeight", "attrItemHeight"], attrOpenDelay: ["openDelay", "attrOpenDelay"], attrPlaceHolder: ["placeHolder", "attrPlaceHolder"], attrPopupZIndex: ["popupZIndex", "attrPopupZIndex"], attrRtl: ["rtl", "attrRtl"], attrRenderer: ["renderer", "attrRenderer"], attrSelectionRenderer: ["selectionRenderer", "attrSelectionRenderer"], attrSearchMode: ["searchMode", "attrSearchMode"], attrSource: ["source", "attrSource"], attrSelectedIndex: ["selectedIndex", "attrSelectedIndex"], attrScrollBarSize: ["scrollBarSize", "attrScrollBarSize"], attrTheme: ["theme", "attrTheme"], attrTemplate: ["template", "attrTemplate"], attrValueMember: ["valueMember", "attrValueMember"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, outputs: { onBindingComplete: "onBindingComplete", onClose: "onClose", onCheckChange: "onCheckChange", onChange: "onChange", onOpen: "onOpen", onSelect: "onSelect", onUnselect: "onUnselect" }, providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
805
816
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDropDownListComponent, decorators: [{
|
|
806
817
|
type: Component,
|
|
807
818
|
args: [{
|
|
@@ -900,6 +911,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
900
911
|
}], attrSelectedIndex: [{
|
|
901
912
|
type: Input,
|
|
902
913
|
args: ['selectedIndex']
|
|
914
|
+
}], attrScrollBarSize: [{
|
|
915
|
+
type: Input,
|
|
916
|
+
args: ['scrollBarSize']
|
|
903
917
|
}], attrTheme: [{
|
|
904
918
|
type: Input,
|
|
905
919
|
args: ['theme']
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export class jqxGridComponent {
|
|
6
6
|
constructor(containerElement) {
|
|
7
7
|
this.autoCreate = true;
|
|
8
|
-
this.properties = ['altrows', 'altstart', 'altstep', 'autoshowloadelement', 'autoshowfiltericon', 'autoshowcolumnsmenubutton', 'showcolumnlines', 'showrowlines', 'showcolumnheaderlines', 'adaptive', 'adaptivewidth', 'commandcolumn', 'commandcolumnrenderer', 'clipboard', 'closeablegroups', 'columnsmenuwidth', 'columnmenuopening', 'columnmenuclosing', 'cellhover', 'enablekeyboarddelete', 'enableellipsis', 'enablemousewheel', 'enableanimations', 'enabletooltips', 'enablehover', 'enablebrowserselection', 'everpresentrowposition', 'everpresentrowheight', 'everpresentrowactions', 'everpresentrowactionsmode', 'filterrowheight', 'filtermode', 'groupsrenderer', 'groupcolumnrenderer', 'groupsexpandedbydefault', 'handlekeyboardnavigation', 'pagerrenderer', 'rtl', 'showdefaultloadelement', 'showfiltercolumnbackground', 'showfiltermenuitems', 'showpinnedcolumnbackground', 'showsortcolumnbackground', 'showsortmenuitems', 'showgroupmenuitems', 'showrowdetailscolumn', 'showheader', 'showgroupsheader', 'showaggregates', 'showgroupaggregates', 'showeverpresentrow', 'showfilterrow', 'showemptyrow', 'showstatusbar', 'statusbarheight', 'showtoolbar', 'showfilterbar', 'filterbarmode', 'selectionmode', 'updatefilterconditions', 'updatefilterpanel', 'theme', 'toolbarheight', 'autoheight', 'autorowheight', 'columnsheight', 'deferreddatafields', 'groupsheaderheight', 'groupindentwidth', 'height', 'pagerheight', 'rowsheight', 'scrollbarsize', 'scrollmode', 'scrollfeedback', 'width', 'autosavestate', 'autoloadstate', 'columns', 'enableSanitize', 'cardview', 'cardviewcolumns', 'cardheight', 'cardsize', 'columngroups', 'columnsmenu', 'columnsresize', 'columnsautoresize', 'columnsreorder', 'charting', 'disabled', 'editable', 'batcheditable', 'editmode', 'filter', 'filterable', 'groupable', 'groups', 'horizontalscrollbarstep', 'horizontalscrollbarlargestep', 'initrowdetails', 'keyboardnavigation', 'localization', 'pagesize', 'pagesizeoptions', 'pagermode', 'pagerbuttonscount', 'pageable', 'autofill', 'rowdetails', 'rowdetailstemplate', 'ready', 'rendered', 'renderstatusbar', 'rendertoolbar', 'rendergridrows', 'sortable', 'sortmode', 'selectedrowindex', 'selectedrowindexes', 'source', 'sorttogglestates', 'updatedelay', 'virtualmode', 'verticalscrollbarstep', 'verticalscrollbarlargestep'];
|
|
8
|
+
this.properties = ['altrows', 'altstart', 'altstep', 'autoshowloadelement', 'autoshowfiltericon', 'autoshowcolumnsmenubutton', 'showcolumnlines', 'showrowlines', 'showcolumnheaderlines', 'adaptive', 'adaptivewidth', 'commandcolumn', 'commandcolumnrenderer', 'clipboard', 'closeablegroups', 'columnsmenuwidth', 'columnmenuopening', 'columnmenuclosing', 'cellhover', 'enablekeyboarddelete', 'enableellipsis', 'enablemousewheel', 'enableanimations', 'enabletooltips', 'enablehover', 'enablebrowserselection', 'everpresentrowposition', 'everpresentrowheight', 'everpresentrowactions', 'everpresentrowactionsmode', 'filterrowheight', 'filtermode', 'groupsrenderer', 'groupcolumnrenderer', 'groupsexpandedbydefault', 'handlekeyboardnavigation', 'pagerrenderer', 'rtl', 'showdefaultloadelement', 'showfiltercolumnbackground', 'showfiltermenuitems', 'showpinnedcolumnbackground', 'showsortcolumnbackground', 'showsortmenuitems', 'showgroupmenuitems', 'showrowdetailscolumn', 'showheader', 'showgroupsheader', 'showaggregates', 'showgroupaggregates', 'showeverpresentrow', 'showfilterrow', 'showemptyrow', 'showstatusbar', 'statusbarheight', 'showtoolbar', 'showfilterbar', 'filterbarmode', 'selectionmode', 'updatefilterconditions', 'updatefilterpanel', 'theme', 'toolbarheight', 'autoheight', 'autorowheight', 'columnsheight', 'deferreddatafields', 'groupsheaderheight', 'groupindentwidth', 'height', 'pagerheight', 'rowsheight', 'scrollbarsize', 'scrollmode', 'scrollfeedback', 'width', 'autosavestate', 'autoloadstate', 'columns', 'enableSanitize', 'cardview', 'cardviewcolumns', 'cardheight', 'cardsize', 'columngroups', 'columnsmenu', 'columnsresize', 'columnsautoresize', 'columnsreorder', 'charting', 'disabled', 'editable', 'batcheditable', 'editmode', 'filter', 'filterable', 'groupable', 'groups', 'horizontalscrollbarstep', 'horizontalscrollbarlargestep', 'initrowdetails', 'keyboardnavigation', 'localization', 'pagesize', 'pagesizeoptions', 'pagermode', 'pagerbuttonscount', 'pageable', 'autofill', 'rowdetails', 'rowdetailstemplate', 'ready', 'rendered', 'renderstatusbar', 'rendertoolbar', 'rendergridrows', 'sortable', 'sortmode', 'sortmodekey', 'selectedrowindex', 'selectedrowindexes', 'source', 'sorttogglestates', 'updatedelay', 'virtualmode', 'verticalscrollbarstep', 'verticalscrollbarlargestep'];
|
|
9
9
|
// jqxGridComponent events
|
|
10
10
|
this.onBindingcomplete = new EventEmitter();
|
|
11
11
|
this.onColumnresized = new EventEmitter();
|
|
@@ -1461,6 +1461,17 @@ export class jqxGridComponent {
|
|
|
1461
1461
|
return this.host.jqxGrid('sortmode');
|
|
1462
1462
|
}
|
|
1463
1463
|
}
|
|
1464
|
+
sortmodekey(arg) {
|
|
1465
|
+
if (this.autoCreate && !this.host) {
|
|
1466
|
+
this.createComponent();
|
|
1467
|
+
}
|
|
1468
|
+
if (arg !== undefined) {
|
|
1469
|
+
this.host.jqxGrid('sortmodekey', arg);
|
|
1470
|
+
}
|
|
1471
|
+
else {
|
|
1472
|
+
return this.host.jqxGrid('sortmodekey');
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1464
1475
|
selectedrowindex(arg) {
|
|
1465
1476
|
if (this.autoCreate && !this.host) {
|
|
1466
1477
|
this.createComponent();
|
|
@@ -2214,7 +2225,7 @@ export class jqxGridComponent {
|
|
|
2214
2225
|
}
|
|
2215
2226
|
} //jqxGridComponent
|
|
2216
2227
|
jqxGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxGridComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2217
|
-
jqxGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxGridComponent, selector: "jqxGrid", inputs: { attrAltrows: ["altrows", "attrAltrows"], attrAltstart: ["altstart", "attrAltstart"], attrAltstep: ["altstep", "attrAltstep"], attrAutoshowloadelement: ["autoshowloadelement", "attrAutoshowloadelement"], attrAutoshowfiltericon: ["autoshowfiltericon", "attrAutoshowfiltericon"], attrAutoshowcolumnsmenubutton: ["autoshowcolumnsmenubutton", "attrAutoshowcolumnsmenubutton"], attrShowcolumnlines: ["showcolumnlines", "attrShowcolumnlines"], attrShowrowlines: ["showrowlines", "attrShowrowlines"], attrShowcolumnheaderlines: ["showcolumnheaderlines", "attrShowcolumnheaderlines"], attrAdaptive: ["adaptive", "attrAdaptive"], attrAdaptivewidth: ["adaptivewidth", "attrAdaptivewidth"], attrCommandcolumn: ["commandcolumn", "attrCommandcolumn"], attrCommandcolumnrenderer: ["commandcolumnrenderer", "attrCommandcolumnrenderer"], attrClipboard: ["clipboard", "attrClipboard"], attrCloseablegroups: ["closeablegroups", "attrCloseablegroups"], attrColumnsmenuwidth: ["columnsmenuwidth", "attrColumnsmenuwidth"], attrColumnmenuopening: ["columnmenuopening", "attrColumnmenuopening"], attrColumnmenuclosing: ["columnmenuclosing", "attrColumnmenuclosing"], attrCellhover: ["cellhover", "attrCellhover"], attrEnablekeyboarddelete: ["enablekeyboarddelete", "attrEnablekeyboarddelete"], attrEnableellipsis: ["enableellipsis", "attrEnableellipsis"], attrEnablemousewheel: ["enablemousewheel", "attrEnablemousewheel"], attrEnableanimations: ["enableanimations", "attrEnableanimations"], attrEnabletooltips: ["enabletooltips", "attrEnabletooltips"], attrEnablehover: ["enablehover", "attrEnablehover"], attrEnablebrowserselection: ["enablebrowserselection", "attrEnablebrowserselection"], attrEverpresentrowposition: ["everpresentrowposition", "attrEverpresentrowposition"], attrEverpresentrowheight: ["everpresentrowheight", "attrEverpresentrowheight"], attrEverpresentrowactions: ["everpresentrowactions", "attrEverpresentrowactions"], attrEverpresentrowactionsmode: ["everpresentrowactionsmode", "attrEverpresentrowactionsmode"], attrFilterrowheight: ["filterrowheight", "attrFilterrowheight"], attrFiltermode: ["filtermode", "attrFiltermode"], attrGroupsrenderer: ["groupsrenderer", "attrGroupsrenderer"], attrGroupcolumnrenderer: ["groupcolumnrenderer", "attrGroupcolumnrenderer"], attrGroupsexpandedbydefault: ["groupsexpandedbydefault", "attrGroupsexpandedbydefault"], attrHandlekeyboardnavigation: ["handlekeyboardnavigation", "attrHandlekeyboardnavigation"], attrPagerrenderer: ["pagerrenderer", "attrPagerrenderer"], attrRtl: ["rtl", "attrRtl"], attrShowdefaultloadelement: ["showdefaultloadelement", "attrShowdefaultloadelement"], attrShowfiltercolumnbackground: ["showfiltercolumnbackground", "attrShowfiltercolumnbackground"], attrShowfiltermenuitems: ["showfiltermenuitems", "attrShowfiltermenuitems"], attrShowpinnedcolumnbackground: ["showpinnedcolumnbackground", "attrShowpinnedcolumnbackground"], attrShowsortcolumnbackground: ["showsortcolumnbackground", "attrShowsortcolumnbackground"], attrShowsortmenuitems: ["showsortmenuitems", "attrShowsortmenuitems"], attrShowgroupmenuitems: ["showgroupmenuitems", "attrShowgroupmenuitems"], attrShowrowdetailscolumn: ["showrowdetailscolumn", "attrShowrowdetailscolumn"], attrShowheader: ["showheader", "attrShowheader"], attrShowgroupsheader: ["showgroupsheader", "attrShowgroupsheader"], attrShowaggregates: ["showaggregates", "attrShowaggregates"], attrShowgroupaggregates: ["showgroupaggregates", "attrShowgroupaggregates"], attrShoweverpresentrow: ["showeverpresentrow", "attrShoweverpresentrow"], attrShowfilterrow: ["showfilterrow", "attrShowfilterrow"], attrShowemptyrow: ["showemptyrow", "attrShowemptyrow"], attrShowstatusbar: ["showstatusbar", "attrShowstatusbar"], attrStatusbarheight: ["statusbarheight", "attrStatusbarheight"], attrShowtoolbar: ["showtoolbar", "attrShowtoolbar"], attrShowfilterbar: ["showfilterbar", "attrShowfilterbar"], attrFilterbarmode: ["filterbarmode", "attrFilterbarmode"], attrSelectionmode: ["selectionmode", "attrSelectionmode"], attrUpdatefilterconditions: ["updatefilterconditions", "attrUpdatefilterconditions"], attrUpdatefilterpanel: ["updatefilterpanel", "attrUpdatefilterpanel"], attrTheme: ["theme", "attrTheme"], attrToolbarheight: ["toolbarheight", "attrToolbarheight"], attrAutoheight: ["autoheight", "attrAutoheight"], attrAutorowheight: ["autorowheight", "attrAutorowheight"], attrColumnsheight: ["columnsheight", "attrColumnsheight"], attrDeferreddatafields: ["deferreddatafields", "attrDeferreddatafields"], attrGroupsheaderheight: ["groupsheaderheight", "attrGroupsheaderheight"], attrGroupindentwidth: ["groupindentwidth", "attrGroupindentwidth"], attrPagerheight: ["pagerheight", "attrPagerheight"], attrRowsheight: ["rowsheight", "attrRowsheight"], attrScrollbarsize: ["scrollbarsize", "attrScrollbarsize"], attrScrollmode: ["scrollmode", "attrScrollmode"], attrScrollfeedback: ["scrollfeedback", "attrScrollfeedback"], attrAutosavestate: ["autosavestate", "attrAutosavestate"], attrAutoloadstate: ["autoloadstate", "attrAutoloadstate"], attrColumns: ["columns", "attrColumns"], attrEnableSanitize: ["enableSanitize", "attrEnableSanitize"], attrCardview: ["cardview", "attrCardview"], attrCardviewcolumns: ["cardviewcolumns", "attrCardviewcolumns"], attrCardheight: ["cardheight", "attrCardheight"], attrCardsize: ["cardsize", "attrCardsize"], attrColumngroups: ["columngroups", "attrColumngroups"], attrColumnsmenu: ["columnsmenu", "attrColumnsmenu"], attrColumnsresize: ["columnsresize", "attrColumnsresize"], attrColumnsautoresize: ["columnsautoresize", "attrColumnsautoresize"], attrColumnsreorder: ["columnsreorder", "attrColumnsreorder"], attrCharting: ["charting", "attrCharting"], attrDisabled: ["disabled", "attrDisabled"], attrEditable: ["editable", "attrEditable"], attrBatcheditable: ["batcheditable", "attrBatcheditable"], attrEditmode: ["editmode", "attrEditmode"], attrFilter: ["filter", "attrFilter"], attrFilterable: ["filterable", "attrFilterable"], attrGroupable: ["groupable", "attrGroupable"], attrGroups: ["groups", "attrGroups"], attrHorizontalscrollbarstep: ["horizontalscrollbarstep", "attrHorizontalscrollbarstep"], attrHorizontalscrollbarlargestep: ["horizontalscrollbarlargestep", "attrHorizontalscrollbarlargestep"], attrInitrowdetails: ["initrowdetails", "attrInitrowdetails"], attrKeyboardnavigation: ["keyboardnavigation", "attrKeyboardnavigation"], attrLocalization: ["localization", "attrLocalization"], attrPagesize: ["pagesize", "attrPagesize"], attrPagesizeoptions: ["pagesizeoptions", "attrPagesizeoptions"], attrPagermode: ["pagermode", "attrPagermode"], attrPagerbuttonscount: ["pagerbuttonscount", "attrPagerbuttonscount"], attrPageable: ["pageable", "attrPageable"], attrAutofill: ["autofill", "attrAutofill"], attrRowdetails: ["rowdetails", "attrRowdetails"], attrRowdetailstemplate: ["rowdetailstemplate", "attrRowdetailstemplate"], attrReady: ["ready", "attrReady"], attrRendered: ["rendered", "attrRendered"], attrRenderstatusbar: ["renderstatusbar", "attrRenderstatusbar"], attrRendertoolbar: ["rendertoolbar", "attrRendertoolbar"], attrRendergridrows: ["rendergridrows", "attrRendergridrows"], attrSortable: ["sortable", "attrSortable"], attrSortmode: ["sortmode", "attrSortmode"], attrSelectedrowindex: ["selectedrowindex", "attrSelectedrowindex"], attrSelectedrowindexes: ["selectedrowindexes", "attrSelectedrowindexes"], attrSource: ["source", "attrSource"], attrSorttogglestates: ["sorttogglestates", "attrSorttogglestates"], attrUpdatedelay: ["updatedelay", "attrUpdatedelay"], attrVirtualmode: ["virtualmode", "attrVirtualmode"], attrVerticalscrollbarstep: ["verticalscrollbarstep", "attrVerticalscrollbarstep"], attrVerticalscrollbarlargestep: ["verticalscrollbarlargestep", "attrVerticalscrollbarlargestep"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, outputs: { onBindingcomplete: "onBindingcomplete", onColumnresized: "onColumnresized", onColumnreordered: "onColumnreordered", onColumnclick: "onColumnclick", onCellclick: "onCellclick", onCelldoubleclick: "onCelldoubleclick", onCellselect: "onCellselect", onCellunselect: "onCellunselect", onCellvaluechanged: "onCellvaluechanged", onCellbeginedit: "onCellbeginedit", onCellendedit: "onCellendedit", onFilter: "onFilter", onGroupschanged: "onGroupschanged", onGroupexpand: "onGroupexpand", onGroupcollapse: "onGroupcollapse", onPagechanged: "onPagechanged", onPagesizechanged: "onPagesizechanged", onRowclick: "onRowclick", onRowdoubleclick: "onRowdoubleclick", onRowselect: "onRowselect", onRowunselect: "onRowunselect", onRowexpand: "onRowexpand", onRowcollapse: "onRowcollapse", onSort: "onSort" }, usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true });
|
|
2228
|
+
jqxGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxGridComponent, selector: "jqxGrid", inputs: { attrAltrows: ["altrows", "attrAltrows"], attrAltstart: ["altstart", "attrAltstart"], attrAltstep: ["altstep", "attrAltstep"], attrAutoshowloadelement: ["autoshowloadelement", "attrAutoshowloadelement"], attrAutoshowfiltericon: ["autoshowfiltericon", "attrAutoshowfiltericon"], attrAutoshowcolumnsmenubutton: ["autoshowcolumnsmenubutton", "attrAutoshowcolumnsmenubutton"], attrShowcolumnlines: ["showcolumnlines", "attrShowcolumnlines"], attrShowrowlines: ["showrowlines", "attrShowrowlines"], attrShowcolumnheaderlines: ["showcolumnheaderlines", "attrShowcolumnheaderlines"], attrAdaptive: ["adaptive", "attrAdaptive"], attrAdaptivewidth: ["adaptivewidth", "attrAdaptivewidth"], attrCommandcolumn: ["commandcolumn", "attrCommandcolumn"], attrCommandcolumnrenderer: ["commandcolumnrenderer", "attrCommandcolumnrenderer"], attrClipboard: ["clipboard", "attrClipboard"], attrCloseablegroups: ["closeablegroups", "attrCloseablegroups"], attrColumnsmenuwidth: ["columnsmenuwidth", "attrColumnsmenuwidth"], attrColumnmenuopening: ["columnmenuopening", "attrColumnmenuopening"], attrColumnmenuclosing: ["columnmenuclosing", "attrColumnmenuclosing"], attrCellhover: ["cellhover", "attrCellhover"], attrEnablekeyboarddelete: ["enablekeyboarddelete", "attrEnablekeyboarddelete"], attrEnableellipsis: ["enableellipsis", "attrEnableellipsis"], attrEnablemousewheel: ["enablemousewheel", "attrEnablemousewheel"], attrEnableanimations: ["enableanimations", "attrEnableanimations"], attrEnabletooltips: ["enabletooltips", "attrEnabletooltips"], attrEnablehover: ["enablehover", "attrEnablehover"], attrEnablebrowserselection: ["enablebrowserselection", "attrEnablebrowserselection"], attrEverpresentrowposition: ["everpresentrowposition", "attrEverpresentrowposition"], attrEverpresentrowheight: ["everpresentrowheight", "attrEverpresentrowheight"], attrEverpresentrowactions: ["everpresentrowactions", "attrEverpresentrowactions"], attrEverpresentrowactionsmode: ["everpresentrowactionsmode", "attrEverpresentrowactionsmode"], attrFilterrowheight: ["filterrowheight", "attrFilterrowheight"], attrFiltermode: ["filtermode", "attrFiltermode"], attrGroupsrenderer: ["groupsrenderer", "attrGroupsrenderer"], attrGroupcolumnrenderer: ["groupcolumnrenderer", "attrGroupcolumnrenderer"], attrGroupsexpandedbydefault: ["groupsexpandedbydefault", "attrGroupsexpandedbydefault"], attrHandlekeyboardnavigation: ["handlekeyboardnavigation", "attrHandlekeyboardnavigation"], attrPagerrenderer: ["pagerrenderer", "attrPagerrenderer"], attrRtl: ["rtl", "attrRtl"], attrShowdefaultloadelement: ["showdefaultloadelement", "attrShowdefaultloadelement"], attrShowfiltercolumnbackground: ["showfiltercolumnbackground", "attrShowfiltercolumnbackground"], attrShowfiltermenuitems: ["showfiltermenuitems", "attrShowfiltermenuitems"], attrShowpinnedcolumnbackground: ["showpinnedcolumnbackground", "attrShowpinnedcolumnbackground"], attrShowsortcolumnbackground: ["showsortcolumnbackground", "attrShowsortcolumnbackground"], attrShowsortmenuitems: ["showsortmenuitems", "attrShowsortmenuitems"], attrShowgroupmenuitems: ["showgroupmenuitems", "attrShowgroupmenuitems"], attrShowrowdetailscolumn: ["showrowdetailscolumn", "attrShowrowdetailscolumn"], attrShowheader: ["showheader", "attrShowheader"], attrShowgroupsheader: ["showgroupsheader", "attrShowgroupsheader"], attrShowaggregates: ["showaggregates", "attrShowaggregates"], attrShowgroupaggregates: ["showgroupaggregates", "attrShowgroupaggregates"], attrShoweverpresentrow: ["showeverpresentrow", "attrShoweverpresentrow"], attrShowfilterrow: ["showfilterrow", "attrShowfilterrow"], attrShowemptyrow: ["showemptyrow", "attrShowemptyrow"], attrShowstatusbar: ["showstatusbar", "attrShowstatusbar"], attrStatusbarheight: ["statusbarheight", "attrStatusbarheight"], attrShowtoolbar: ["showtoolbar", "attrShowtoolbar"], attrShowfilterbar: ["showfilterbar", "attrShowfilterbar"], attrFilterbarmode: ["filterbarmode", "attrFilterbarmode"], attrSelectionmode: ["selectionmode", "attrSelectionmode"], attrUpdatefilterconditions: ["updatefilterconditions", "attrUpdatefilterconditions"], attrUpdatefilterpanel: ["updatefilterpanel", "attrUpdatefilterpanel"], attrTheme: ["theme", "attrTheme"], attrToolbarheight: ["toolbarheight", "attrToolbarheight"], attrAutoheight: ["autoheight", "attrAutoheight"], attrAutorowheight: ["autorowheight", "attrAutorowheight"], attrColumnsheight: ["columnsheight", "attrColumnsheight"], attrDeferreddatafields: ["deferreddatafields", "attrDeferreddatafields"], attrGroupsheaderheight: ["groupsheaderheight", "attrGroupsheaderheight"], attrGroupindentwidth: ["groupindentwidth", "attrGroupindentwidth"], attrPagerheight: ["pagerheight", "attrPagerheight"], attrRowsheight: ["rowsheight", "attrRowsheight"], attrScrollbarsize: ["scrollbarsize", "attrScrollbarsize"], attrScrollmode: ["scrollmode", "attrScrollmode"], attrScrollfeedback: ["scrollfeedback", "attrScrollfeedback"], attrAutosavestate: ["autosavestate", "attrAutosavestate"], attrAutoloadstate: ["autoloadstate", "attrAutoloadstate"], attrColumns: ["columns", "attrColumns"], attrEnableSanitize: ["enableSanitize", "attrEnableSanitize"], attrCardview: ["cardview", "attrCardview"], attrCardviewcolumns: ["cardviewcolumns", "attrCardviewcolumns"], attrCardheight: ["cardheight", "attrCardheight"], attrCardsize: ["cardsize", "attrCardsize"], attrColumngroups: ["columngroups", "attrColumngroups"], attrColumnsmenu: ["columnsmenu", "attrColumnsmenu"], attrColumnsresize: ["columnsresize", "attrColumnsresize"], attrColumnsautoresize: ["columnsautoresize", "attrColumnsautoresize"], attrColumnsreorder: ["columnsreorder", "attrColumnsreorder"], attrCharting: ["charting", "attrCharting"], attrDisabled: ["disabled", "attrDisabled"], attrEditable: ["editable", "attrEditable"], attrBatcheditable: ["batcheditable", "attrBatcheditable"], attrEditmode: ["editmode", "attrEditmode"], attrFilter: ["filter", "attrFilter"], attrFilterable: ["filterable", "attrFilterable"], attrGroupable: ["groupable", "attrGroupable"], attrGroups: ["groups", "attrGroups"], attrHorizontalscrollbarstep: ["horizontalscrollbarstep", "attrHorizontalscrollbarstep"], attrHorizontalscrollbarlargestep: ["horizontalscrollbarlargestep", "attrHorizontalscrollbarlargestep"], attrInitrowdetails: ["initrowdetails", "attrInitrowdetails"], attrKeyboardnavigation: ["keyboardnavigation", "attrKeyboardnavigation"], attrLocalization: ["localization", "attrLocalization"], attrPagesize: ["pagesize", "attrPagesize"], attrPagesizeoptions: ["pagesizeoptions", "attrPagesizeoptions"], attrPagermode: ["pagermode", "attrPagermode"], attrPagerbuttonscount: ["pagerbuttonscount", "attrPagerbuttonscount"], attrPageable: ["pageable", "attrPageable"], attrAutofill: ["autofill", "attrAutofill"], attrRowdetails: ["rowdetails", "attrRowdetails"], attrRowdetailstemplate: ["rowdetailstemplate", "attrRowdetailstemplate"], attrReady: ["ready", "attrReady"], attrRendered: ["rendered", "attrRendered"], attrRenderstatusbar: ["renderstatusbar", "attrRenderstatusbar"], attrRendertoolbar: ["rendertoolbar", "attrRendertoolbar"], attrRendergridrows: ["rendergridrows", "attrRendergridrows"], attrSortable: ["sortable", "attrSortable"], attrSortmode: ["sortmode", "attrSortmode"], attrSortmodekey: ["sortmodekey", "attrSortmodekey"], attrSelectedrowindex: ["selectedrowindex", "attrSelectedrowindex"], attrSelectedrowindexes: ["selectedrowindexes", "attrSelectedrowindexes"], attrSource: ["source", "attrSource"], attrSorttogglestates: ["sorttogglestates", "attrSorttogglestates"], attrUpdatedelay: ["updatedelay", "attrUpdatedelay"], attrVirtualmode: ["virtualmode", "attrVirtualmode"], attrVerticalscrollbarstep: ["verticalscrollbarstep", "attrVerticalscrollbarstep"], attrVerticalscrollbarlargestep: ["verticalscrollbarlargestep", "attrVerticalscrollbarlargestep"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, outputs: { onBindingcomplete: "onBindingcomplete", onColumnresized: "onColumnresized", onColumnreordered: "onColumnreordered", onColumnclick: "onColumnclick", onCellclick: "onCellclick", onCelldoubleclick: "onCelldoubleclick", onCellselect: "onCellselect", onCellunselect: "onCellunselect", onCellvaluechanged: "onCellvaluechanged", onCellbeginedit: "onCellbeginedit", onCellendedit: "onCellendedit", onFilter: "onFilter", onGroupschanged: "onGroupschanged", onGroupexpand: "onGroupexpand", onGroupcollapse: "onGroupcollapse", onPagechanged: "onPagechanged", onPagesizechanged: "onPagesizechanged", onRowclick: "onRowclick", onRowdoubleclick: "onRowdoubleclick", onRowselect: "onRowselect", onRowunselect: "onRowunselect", onRowexpand: "onRowexpand", onRowcollapse: "onRowcollapse", onSort: "onSort" }, usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true });
|
|
2218
2229
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxGridComponent, decorators: [{
|
|
2219
2230
|
type: Component,
|
|
2220
2231
|
args: [{
|
|
@@ -2569,6 +2580,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
2569
2580
|
}], attrSortmode: [{
|
|
2570
2581
|
type: Input,
|
|
2571
2582
|
args: ['sortmode']
|
|
2583
|
+
}], attrSortmodekey: [{
|
|
2584
|
+
type: Input,
|
|
2585
|
+
args: ['sortmodekey']
|
|
2572
2586
|
}], attrSelectedrowindex: [{
|
|
2573
2587
|
type: Input,
|
|
2574
2588
|
args: ['selectedrowindex']
|