LookupField paging support

Hi,

how to make LookupField paging through large dataset. Vaadin ComboBox component have setPageSize method but LookupFiled only have setPageLength wich only set popup window row number. I try to set to attached loader maxResults but then i get only portion of dataset.

Thx

Hello @haattila

You can unwrap CUBA LookupField component to be able to access Vaadin component API:

lookupField.unwrap(ComboBox.class)

Regards,
Daniil