cancel
Showing results for 
Search instead for 
Did you mean: 

How to set the growing attribute of smart table in the RAP maintian view?

0024436387
Discoverer
0 Kudos

I want to set the growing attribute of smarttable in the RAP maintain view. It worked fine on the BAS, but cannot get the table object on the fiori launchpad when the page is first loaded.

Does anyone know how to set the grow attribute of RAP maintain view?

 

onInit: function () {
                var oResposiveTable = this.getView().byId("fe::table::_ProcessItemAutoRule::LineItem-innerTable");
                if(oResposiveTable){ //As object page also load this event, so need add this check
                    oResposiveTable.setGrowing(true);
                    oResposiveTable.setGrowingScrollToLoad(true);
                    oResposiveTable.setGrowingThreshold(100);
                }
            }

Accepted Solutions (0)

Answers (0)