Hello,
I am trying to POST a form to my server but it does not work.
Because I have to always use this method to go from page to page, right ? :
function goToPage(page){
var container = MyOpenSpace.MySpaceContainer.get();
var qryString = container.getQueryString();
window.location = page + "?" + qryString;
}
so in my form, action is something like this :
But it does a redirect it does not submit the data !!
What should I do ?
Does someone manage to use forms with their IFrame - Rest app ?
Thank you.