reset password
Author Message
msargent
Posts: 519
Posted 13:45 Aug 06, 2015 |

Hello,

Is it possible to add an upload input to the form in csjobs-midterm apply.jsp, being that it is a Spring form? Is it advisable, or should implementing the add CV function be done in a separate form?

cysun
Posts: 2935
Posted 14:27 Aug 06, 2015 |

You can add a upload field to the form. Spring <form> taglib doesn't have a file upload tag, but you can use a regular <input type="file"> tag and handle it in the controller as a separate @RequestParam.