I use it as the following:
function loadSelect(page,para,pID){
DOMAssistant.AJAX({
url: page,
method: "get",
params: para,
callback: setOption,
responseType : "XML"
});
}
It's error: DOMAssistant.AJAX is not a function
ifif I use it like this:
DOMAssistant.AJAX.post(page,para,functionName)
but It's return the text format , and I want to get the format of
xml;