ids-enterprise-typings 18.2.3 → 18.2.5
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.
|
@@ -1406,6 +1406,11 @@ interface SohoDataGridRowActivated {
|
|
|
1406
1406
|
item: any;
|
|
1407
1407
|
}
|
|
1408
1408
|
|
|
1409
|
+
interface SohoDataGridColumnChange {
|
|
1410
|
+
row: number;
|
|
1411
|
+
item: any;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1409
1414
|
interface SohoDataGridSelectedRow {
|
|
1410
1415
|
idx: number;
|
|
1411
1416
|
data: any;
|
|
@@ -1572,6 +1577,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
1572
1577
|
on(events: 'afterpaging', handler: JQuery.EventHandlerBase<any, SohoPagerPagingInfo>): this;
|
|
1573
1578
|
on(events: 'expandrow', handler: JQuery.EventHandlerBase<any, SohoDataGridRowExpandEvent>): this;
|
|
1574
1579
|
on(events: 'rowactivated | beforerowactivated', handler: JQuery.EventHandlerBase<any, SohoDataGridRowActivatedEvent>): this;
|
|
1580
|
+
on(events: 'columnchange', handler: JQuery.EventHandlerBase<any, SohoDataGridColumnChangedEvent>): this;
|
|
1575
1581
|
on(events: 'rowdeactivated', handler: JQuery.EventHandlerBase<any, SohoDataGridRowDeactivatedEvent>): this;
|
|
1576
1582
|
on(events: 'selected', handler: JQuery.EventHandlerBase<any, SohoDataGridSelectedRow[]>): this;
|
|
1577
1583
|
on(events: 'filteroperatorchanged', handler: JQuery.EventHandlerBase<any, SohoDataGridFilterOperatorChangedEvent>): this;
|
|
@@ -1598,6 +1604,11 @@ interface SohoDataGridRowActivatedEvent {
|
|
|
1598
1604
|
item: any;
|
|
1599
1605
|
}
|
|
1600
1606
|
|
|
1607
|
+
interface SohoDataGridColumnChangedEvent {
|
|
1608
|
+
row: number;
|
|
1609
|
+
item: any;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1601
1612
|
interface SohoDataGridRowDeactivatedEvent extends SohoDataGridRowActivatedEvent { }
|
|
1602
1613
|
|
|
1603
1614
|
interface SohoDataGridRenderedEvent {
|