Embedded Forms and Chrome V38

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Embedded Forms and Chrome V38

bwallis42
I have a simple prototype page using an embedded form but I cannot get it to work. The form displays with the buttons but none of the buttons seem to do anything, ie: i cannot save the form.

If I try a multi section form the navigation buttons are also not working and I cannot get past the first section. Debugging with the browser debugger (Chrome V38) shows that no HTTP requests are sent when pressing the buttons in the form.

Is this just a Chrome V38 (Beta) issue? I don't have V36 installed to try. Firefox V29 seems to work OK.
Reply | Threaded
Open this post in threaded view
|

Re: Embedded Forms and Chrome V38

Erik Bruchez
Administrator
Do you mean you use 4.7's embedding?

-Erik
Reply | Threaded
Open this post in threaded view
|

Re: Embedded Forms and Chrome V38

bwallis42
Yes, 4.7 embedding. The jsp page looks like this:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    import="org.orbeon.oxf.fr.embedding.servlet.API"
    pageEncoding="US-ASCII"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Insert title here</title>
</head>
<body>
<h1>Demo of an embedded form (New instance)</h1>
<h2> This is form type cpf/fdsa</h2>
 <%
        API.embedFormJava(
            request,      // HttpServletRequest: incoming HttpServletRequest
            out,          // Writer: where the embedded form is written
            "cpf",     // String: Form Runner form name
            "fdsa",  // String: Form Runner app name
            "new",        // String: Form Runner action name
            null,         // String: Form Runner document id (optional)
            null,         // String: query string (optional)
            null          // Map<String, String>: custom HTTP headers (optional)
        );
    %>
    
</body>
</html>