- assigned_to: nobody --> ttm
I think I found why RawInclude and Ajax don't go together.
Let's say you have a Page called 'FrmHost' on which you drop the RawInclude component.
When this Page is being created the Form within this Page will carry this Id/Name.
Let's say the Page which is being loaded into the RawInclude component is called 'FrmClient'.
An Ajax call from this Page will look like this.
Code:
function Button1JSClick(event)
{
var event = event || window.event;
var params=null;
xajax_ajaxProcess('FrmClient','Button1',params,'test',xajax.getFormValues('FrmClient'),[]);
//Add your javascript code here
return (false);
}The Ajax call searches for an object called FrmClient which of course doesn't exists.
This all makes sense to me, but too bad it can't work. (yet)