Skip to Content
0
Mar 25, 2015 at 06:55 AM

sap.m.Select showing only 100 records. How to allow it to display more than 100?

6849 Views

Hi Experts,

Please let me know if you have any solution for this. Thanks in Advance

myEleFld = new sap.m.Select({
  autoAdjustWidth:true,
  id : val,
  enabled: oData.results[i].Roemp
  });

myEleFld.setModel(Obj);
  myEleFld.bindAggregation("items", { 
  path : "/value", 
growing : "true",
    growingThreshold : "50",
    growingScrollToLoad : "true",
  template : new sap.ui.core.Item({
  key : "{key}",
  text : "{value}"
  })
  });

Regards,

Irfan