jqwidgets-ng 23.0.2 → 23.0.3
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.
|
@@ -2206,7 +2206,7 @@ export class jqxGridComponent {
|
|
|
2206
2206
|
if (this.autoCreate && !this.host) {
|
|
2207
2207
|
this.createComponent();
|
|
2208
2208
|
}
|
|
2209
|
-
|
|
2209
|
+
this.host.jqxGrid('closeSidePanel');
|
|
2210
2210
|
}
|
|
2211
2211
|
selectcell(rowBoundIndex, dataField) {
|
|
2212
2212
|
if (this.autoCreate && !this.host) {
|
|
@@ -2207,7 +2207,7 @@ class jqxGridComponent {
|
|
|
2207
2207
|
if (this.autoCreate && !this.host) {
|
|
2208
2208
|
this.createComponent();
|
|
2209
2209
|
}
|
|
2210
|
-
|
|
2210
|
+
this.host.jqxGrid('closeSidePanel');
|
|
2211
2211
|
}
|
|
2212
2212
|
selectcell(rowBoundIndex, dataField) {
|
|
2213
2213
|
if (this.autoCreate && !this.host) {
|
|
@@ -2207,7 +2207,7 @@ class jqxGridComponent {
|
|
|
2207
2207
|
if (this.autoCreate && !this.host) {
|
|
2208
2208
|
this.createComponent();
|
|
2209
2209
|
}
|
|
2210
|
-
|
|
2210
|
+
this.host.jqxGrid('closeSidePanel');
|
|
2211
2211
|
}
|
|
2212
2212
|
selectcell(rowBoundIndex, dataField) {
|
|
2213
2213
|
if (this.autoCreate && !this.host) {
|
package/jqwidgets.d.ts
CHANGED
|
@@ -2357,8 +2357,8 @@ declare module jqwidgets {
|
|
|
2357
2357
|
getselectedrowindexes(): Array<number>;
|
|
2358
2358
|
getselectedcell(): GridGetSelectedCell;
|
|
2359
2359
|
getselectedcells(): Array<GridGetSelectedCell>;
|
|
2360
|
-
showSidePanel(selector:
|
|
2361
|
-
closeSidePanel():
|
|
2360
|
+
showSidePanel(selector: string | HTMLElement, width: number, callbackFn: any): void;
|
|
2361
|
+
closeSidePanel(): void;
|
|
2362
2362
|
selectcell(rowBoundIndex: number, dataField: string): void;
|
|
2363
2363
|
selectallrows(): void;
|
|
2364
2364
|
selectrow(rowBoundIndex: number): void;
|
|
@@ -382,8 +382,8 @@ export declare class jqxGridComponent implements OnChanges, AfterViewInit, After
|
|
|
382
382
|
getselectedrowindexes(): Array<number>;
|
|
383
383
|
getselectedcell(): jqwidgets.GridGetSelectedCell;
|
|
384
384
|
getselectedcells(): Array<jqwidgets.GridGetSelectedCell>;
|
|
385
|
-
showSidePanel(selector:
|
|
386
|
-
closeSidePanel():
|
|
385
|
+
showSidePanel(selector: string | HTMLElement, width?: number, callbackFn?: any): void;
|
|
386
|
+
closeSidePanel(): void;
|
|
387
387
|
selectcell(rowBoundIndex: number, dataField: string): void;
|
|
388
388
|
selectallrows(): void;
|
|
389
389
|
selectrow(rowBoundIndex: number): void;
|