how to create excell 'combo'

Hi All,

I found below link to create excell ‘combo’.
docs.dhtmlx.com/doku.php?id=dhtm … cell_combo

still i m not able to create a combo which has more number of options.

i am using tag.
<cell xmlcontent=“true” source=“data.jsp”>1

Here source is use to get all the options of the combo. basically it is taking all the options at the time of loading. so for 5 no. of rows it is going to the ajax jsp, 5 times. so it is very slow. that’s why i want to load the options of combo when user click on a particular combo cell(source will call at the time of combo onclick).

Please help me to solve the issue.
Thanks,
Abhi

You can use combo auto complete mode. Please check example here dhtmlx.com/docs/products/dht … combo.html (3rd column)

Hi Olga,

I want to create a normal drop down.
means a drop down contains more then 2000 options, which is non editable and when user click on the drop down cell it will display all the options (ajax is required to get all the options when user click on the drop down cell).

can you please guide me in the code. because i am unable to create such drop down with your given link.

Thanks,
Abhi

There is no way to increase combo performance in your case. It’s really hard operation for the browser to render 2000 options in each cell at once.