Hi,
I have made a dhtmlxForm with some dhtmlxCombo that are loaded with the function
myForm.loadStruct("test.xml");
In my test.xml I have 2 comboboxes and a submit button:
<item type="button" value="Submit"/>
When I click on the submit button I want a form action “test.php” and I want that the selected combobox value are put as parameter of my action like a simple html form.
I tried with
myForm.attachEvent("onButtonClick",function(name,command){
document.forms[0].submit()
});
But it’s not taking my parameters of my form.
can someone help?