Actually I had a similar question. I guess what the OP requires is that the table will be displayed in the same page as the form (probably below the search criteria). This will enable the user to...
Type: Posts; User: debarshim; Keyword(s):
Actually I had a similar question. I guess what the OP requires is that the table will be displayed in the same page as the form (probably below the search criteria). This will enable the user to...
I'm using a WizardFormController and using a ConfigurablePageBeanValidator to validate form fields accross multiple pages.
Here are some snippets of text from a few relevant files:
...
For example here is what I want to do:
The command object contains a java.util.Set<Vehicle>.
The user is presented with a html form where she can enter any number of vehicles (could be just 1...
Here is the (pseudo)code:
public class Customer{
String firstName;
Set vehicles;
Set bicycles;
}
public class Vehicle{
String make, model;
Thanks a lot folks.... This is excatly what I was looking out for.
Really appreciate your help.
btw: What is TFGI ?
I searched the reference guide but could not find it.
I'm looking for a documented list of "all" possible attributes for the <form:form>, <form:input> and <form:errors> tags.
Thank you :)
Spring provides custom tag libraries for jsp templates (e.g. form:form)
In my organization, we try to follow the practice of keeping the view (the jsps) completely independent of any MVC technology....