there is a problem with setting options in form is configured from xml. We’ll fix the problem in the Suite 3.0. Currently please use JSON configuration:
form/samples/02_items/09_calendar.html
To load data you may use dhtmlxAjax:
[code]dhtmlxAjax.get(“some.php”,outputResponse);
function outputResponse(loader){
if(loader.xmlDoc.responseXML!=null){
eval (“formData=”+data);
myForm = new dhtmlXForm(“myForm”, formData);
}
});[/code]