Loading 10000 records in DhtmlXCombo

We are using Java connector to access data in Oracle databse. For certain conditions we need to populate approximate 10000 records in Combo (Drop down list box); which takes a lot of time Appearantly there are no smart renderring options in Combo (similar to DhtmlXGrid).

I am looking for suggestions to handle this situation.

Hello

Here is demo for server filter with subload:
dhtmlx.com/docs/products/dhtmlxC … bload.html

Logic is the following:
From the beginning combo is empty. User start typing (try to type letter ‘a’).
At this moment combo will load from server first portion of data (20 entities from database),
then you scroll list down (by holding down-arrow key), when you will reach last item in a list,
combo will “subload” next 20 intities and then next 20 and then next 20 until server return empty set.

This demo also included into dhtmlxSuite.zip

Thanks a lot