ids-enterprise-typings 10.11.3 → 10.11.4
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.
|
@@ -1489,6 +1489,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
1489
1489
|
on(events: 'rowactivated | beforerowactivated', handler: JQuery.EventHandlerBase<any, SohoDataGridRowActivatedEvent>): this;
|
|
1490
1490
|
on(events: 'rowdeactivated', handler: JQuery.EventHandlerBase<any, SohoDataGridRowDeactivatedEvent>): this;
|
|
1491
1491
|
on(events: 'selected', handler: JQuery.EventHandlerBase<any, SohoDataGridSelectedRow[]>): this;
|
|
1492
|
+
on(events: 'filteroperatorchanged', handler: JQuery.EventHandlerBase<any, SohoDataGridFilterOperatorChangedEvent>): this;
|
|
1492
1493
|
}
|
|
1493
1494
|
|
|
1494
1495
|
interface SohoDataGridRowExpandEvent {
|
|
@@ -1573,3 +1574,10 @@ interface SohoDataGridScrollEvent {
|
|
|
1573
1574
|
percent: number;
|
|
1574
1575
|
percentScrolled: number;
|
|
1575
1576
|
}
|
|
1577
|
+
|
|
1578
|
+
interface SohoDataGridFilterOperatorChangedEvent {
|
|
1579
|
+
operator: string;
|
|
1580
|
+
defaultOperator: string;
|
|
1581
|
+
value?: string;
|
|
1582
|
+
columnId: string;
|
|
1583
|
+
}
|