File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
ex04/sample.p13n/webapp/control
ex06/sample.p13n/webapp/control
ex09/sample.p13n/webapp/control Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change 11import Table , { $TableSettings } from "sap/m/Table"
22import Engine , { State } from "sap/m/p13n/Engine"
33import SelectionController from "sap/m/p13n/SelectionController"
4- // @ts -ignore TODO: FIX export of MetadataObject type
54import MetadataHelper , { MetadataObject } from "sap/m/p13n/MetadataHelper"
65import Column from "sap/m/Column"
76import Text from "sap/m/Text"
@@ -24,7 +23,6 @@ export default class P13nTable extends Table {
2423
2524 constructor ( id ?: string , settings ?: $TableSettings ) {
2625 super ( id , settings )
27- // @ts -ignore TODO: FIX static method declaration
2826 this . engine = Engine . getInstance ( )
2927 this . initialized = new Promise ( ( resolve : ( ) => void ) : void => {
3028 this . attachEventOnce ( "updateFinished" , ( ) : void => {
@@ -47,13 +45,11 @@ export default class P13nTable extends Table {
4745 }
4846 } )
4947
50- // @ts -ignore TODO: FIX constructor
5148 this . helper = new MetadataHelper ( columnsMetadata )
5249
5350 this . engine . register ( this , {
5451 helper : this . helper ,
5552 controller : {
56- // @ts -ignore TODO: FIX constructor
5753 Columns : new SelectionController ( {
5854 control : this ,
5955 targetAggregation : "columns"
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ export default class P13nTable extends Table {
3333
3434 constructor ( id ?: string , settings ?: $TableSettings ) {
3535 super ( id , settings )
36- // @ts -ignore TODO: FIX static method declaration
3736 this . engine = Engine . getInstance ( )
3837 this . initialized = new Promise ( ( resolve : ( ) => void ) : void => {
3938 this . attachEventOnce ( "updateFinished" , ( ) : void => {
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ export default class P13nTable extends Table {
3333
3434 constructor ( id ?: string , settings ?: $TableSettings ) {
3535 super ( id , settings )
36- // @ts -ignore TODO: FIX static method declaration
3736 this . engine = Engine . getInstance ( )
3837 this . initialized = new Promise ( ( resolve : ( ) => void ) : void => {
3938 this . attachEventOnce ( "updateFinished" , ( ) : void => {
You can’t perform that action at this time.
0 commit comments