In struts custom tags we can generate HTML elements like <input> using TextTag.
Do we have any alternate to this in spring or jsp custom tags?
In struts custom tags we can generate HTML elements like <input> using TextTag. Do
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I digged more and here are my findings.
In Spring we can extend InputTag for customize results but limitation is element that you are specifying for value of input tag should be in commandBean. Otherwise will throw Bind error.
Second option is to create a JSP Tag with all flexibility, you can take some of implementation form InputTag and it works gr8.
I used second option.