Displaying 1 result from an estimated 1 matches for "getoptionalgroups".
2007 Nov 07
2
Ajax.Request -post
...Have various Ajax -get calls... which work wonderful...
Suddenly, realised that in one case I have to use ''post'' to overcome
the limitation on URL length...
Have changed the parameters to suit to ''post'' request, but nothing
happens... need your help...
function getOptionalGroups(key){
	ur = server+''/waoptionalgroups?openagent'';
	var memb = memberOfParams();
	var param = {key:escape(key),memberOf:escape(memb)};
	new Ajax.Request(ur,
		{method:''post'',
		postBody: param,
		encoding: ''UTF-8'',
		contentType: ''text/h...