Folks,
I have a situation where I need to provide "promote" functionality where Vendor data from pre-production database is copied to production database. I am using Spring 2 + JPA + Hibernate...
Type: Posts; User: shjejurkar; Keyword(s):
Folks,
I have a situation where I need to provide "promote" functionality where Vendor data from pre-production database is copied to production database. I am using Spring 2 + JPA + Hibernate...
That shouldn't matter - form:input will result in html input tag. Try:
<form:input path="name" autocomplete="off" />
Give this a try. Do not know if this works across various browsers.
For the concerned text fields set autocomplete=off. For example,
<input type="text" name="myField" autocomplete=off>
https://springmodules.dev.java.net/
I am running into the same issue and have tried different combinations but none seem to work. Has anyone got this to work?
Never mind. I was including valand_codebase.js and using valang:codebase tag. I removed the tag and it started working properly.
Take a look at the following for using Valang validator:
http://opensource.atlassian.com/confluence/spring/display/MODULES/Using+Valang+validator
I am getting a similar javascript error with client side Valang validation (server side validation works fine). I traced the error to the javascript code generated by valang:codebase tag. I have a...