combobox che non conserva i dati in modifica con explorer 8

ciao,
ho utilizzato nel mio form il componente DHTLMXCombobox. Anzi, per ben 7 combobox. Tutto bene nella pagina inserisci, ma nella pagina modifica, se si utilizza internet explorer 8 mi perde i dati di modificati nelle suddette combobox. Non riesco a risolvere codesto problema. Mi aiutate è fondamentale!!!

hello,
I used the component in my form DHTLMXCombobox. Indeed, for 7 combobox. Enter the page all right, but the page changes, if you use Internet Explorer 8 I lose modified data in these combobox. I can not solve the problem CODEST. I help is crucial!!

I await your news as soon as possible
THANKS!

Hello,

you may use cookie. On window unload you may place values of combos to the cookie. And after combo data are loaded you may restore selection.

to get selected value:

var value = combo.getActualValue();

to set the value:

combo.setComboValue(value);

There is not built-in cookie support, you need to use own methods to save/get values in cookie.