cancel
Showing results for 
Search instead for 
Did you mean: 

issue while binding nationality fileds to sap.m.Select control

muhsin_panakkal
Participant
0 Kudos

Hi Experts,

I am trying to bind the natinality fields from t005t table to sap.m.select control in SAPUI5. but its taking only first 100 items to the select control, rest is not coming in to the select.

Is there any restrictions for binding in select field...?

Kindly please advise me..

Thanks,

Abdul Muhsin

Accepted Solutions (1)

Accepted Solutions (1)

former_member340030
Contributor
0 Kudos

Hi Muhsin Panakkal,

Akhilesh is correct but instead of making a constant size limit you can set the size limit according to data

oModel.setSizeLimit(data.length);//data is the result from the service.

Thanks Viplove

Answers (2)

Answers (2)

muhsin_panakkal
Participant
0 Kudos

Hi Kushalani and akhilesh,

Its working, thanks for your reply..:)

Thanks,

Abdul

former_member227918
Active Contributor
0 Kudos

by default model can handle 100 records only, increase size limit of your model while initialisation like below:

oModel.setSizeLimit(1000);