ids-enterprise-typings 18.2.0 → 18.2.1-3.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.
|
@@ -1226,7 +1226,11 @@ interface SohoDataGridStatic {
|
|
|
1226
1226
|
*/
|
|
1227
1227
|
toggleRowSelection(idx: number): void;
|
|
1228
1228
|
|
|
1229
|
-
|
|
1229
|
+
/** Set active cell. nodeFocus to true to force focus on cell, default is false */
|
|
1230
|
+
setActiveCell(row: number, cell: number, nodeFocus?: boolean): void;
|
|
1231
|
+
|
|
1232
|
+
/** Scroll into row */
|
|
1233
|
+
scrollRowIntoView(row: number): void;
|
|
1230
1234
|
|
|
1231
1235
|
/* Gets info about the currently activated cell */
|
|
1232
1236
|
activeCell: any;
|
|
@@ -1406,6 +1410,11 @@ interface SohoDataGridRowActivated {
|
|
|
1406
1410
|
item: any;
|
|
1407
1411
|
}
|
|
1408
1412
|
|
|
1413
|
+
interface SohoDataGridColumnChange {
|
|
1414
|
+
row: number;
|
|
1415
|
+
item: any;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1409
1418
|
interface SohoDataGridSelectedRow {
|
|
1410
1419
|
idx: number;
|
|
1411
1420
|
data: any;
|
|
@@ -1435,9 +1444,9 @@ interface SohoDataGridSelectedEvent {
|
|
|
1435
1444
|
rowData?: SohoDataGridSelectedRow[] | SohoDataGridSelectedRow;
|
|
1436
1445
|
}
|
|
1437
1446
|
|
|
1438
|
-
interface SohoDataGridCellChangeEvent
|
|
1447
|
+
interface SohoDataGridCellChangeEvent {
|
|
1439
1448
|
api?: any;
|
|
1440
|
-
rowData?:
|
|
1449
|
+
rowData?: any;
|
|
1441
1450
|
row?: number;
|
|
1442
1451
|
relativeRow?: number;
|
|
1443
1452
|
cell?: number;
|
|
@@ -1572,6 +1581,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
1572
1581
|
on(events: 'afterpaging', handler: JQuery.EventHandlerBase<any, SohoPagerPagingInfo>): this;
|
|
1573
1582
|
on(events: 'expandrow', handler: JQuery.EventHandlerBase<any, SohoDataGridRowExpandEvent>): this;
|
|
1574
1583
|
on(events: 'rowactivated | beforerowactivated', handler: JQuery.EventHandlerBase<any, SohoDataGridRowActivatedEvent>): this;
|
|
1584
|
+
on(events: 'columnchange', handler: JQuery.EventHandlerBase<any, SohoDataGridColumnChangedEvent>): this;
|
|
1575
1585
|
on(events: 'rowdeactivated', handler: JQuery.EventHandlerBase<any, SohoDataGridRowDeactivatedEvent>): this;
|
|
1576
1586
|
on(events: 'selected', handler: JQuery.EventHandlerBase<any, SohoDataGridSelectedRow[]>): this;
|
|
1577
1587
|
on(events: 'filteroperatorchanged', handler: JQuery.EventHandlerBase<any, SohoDataGridFilterOperatorChangedEvent>): this;
|
|
@@ -1598,6 +1608,11 @@ interface SohoDataGridRowActivatedEvent {
|
|
|
1598
1608
|
item: any;
|
|
1599
1609
|
}
|
|
1600
1610
|
|
|
1611
|
+
interface SohoDataGridColumnChangedEvent {
|
|
1612
|
+
row: number;
|
|
1613
|
+
item: any;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1601
1616
|
interface SohoDataGridRowDeactivatedEvent extends SohoDataGridRowActivatedEvent { }
|
|
1602
1617
|
|
|
1603
1618
|
interface SohoDataGridRenderedEvent {
|