On May 5, 8:49 am, Manuel Carrasco Moñino <[email protected]> wrote: > Is it a bug in gwt uibinder?, if so you could open an issue.
It's not a bug in UiBinder. FormPanel.METHOD_POST and FormPanel.ENCODING_MULTIPART are just String constants, not enum values; or rather, FormPanel.setMethod() and FormPanel.setEncoding() take a String argument; so it's up to you to write the appropriate value in your *.ui.xml. Here, it should have been: <g:FormPanel ui:field="narrativeBody" method="POST" encoding="multipart/form-data"> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
