Administrator
|
You should be able to do this via the "query string" parameter, for example:
API.embedFormJava(
request, // HttpServletRequest: incoming HttpServletRequest
out, // Writer: where the embedded form is written
"App", // String: Form Runner form name
"Form", // String: Form Runner app name
"new", // String: Form Runner action name
null, // String: Form Runner document id (optional)
"foo=bar&baz=qux", // String: query string (optional)
null // Map<String, String>: custom HTTP headers (optional)
);
-Erik
|