dhtmlXCombo GET Server variable problem

Hello,

I use dhtmlXCombo in a form and when i send my form with GET METHOD I get value of my dhtmlXCombo but text is not display in dhtmlXCombox

Thanks to say me how can i do it?

Probably you reload the page when form is submitted.

You can save selected value before submitting and restore it after page loading:

    var value = combo.getActualValue();

Or you can try to submit form using the approach  like in the sample:
dhtmlxCombo/samples/actions/combo_save.html
( dhtmlx.com/docs/products/dht … _save.html )


Thank you for your answer.
Finaly i found setComboValue et setCombox text and it’s work !
With get $_GET values in php and use those functions with the value.