Using Spring Roo, I created a relationship between two tables: peoples and users, using a reference field in peoples.(ManyToOne)
The problem is that when I show the view for peoples, for the reference field to users, it show me the fields username and password.
How do I hide the second field of users, password in my view of peoples.
My view is like:
thanks in advanceCode:<form:create id="model_peoples" modelAttribute="people" path="/sec/peoples" render="${empty dependencies}" z="5XtUHaw1WvxoSPiylXYxRvHceVw="> <field:input field="surname" id="..." required="..." z="KSHHIIBq+Tt9qSMgMfsURpB7hTQ="/> <field:input field="name" id="...." required="..." z="JEqPqfAKPU/QDqqfuhbqSonuCYY="/> <field:select field="username" id="....users" itemValue="id" items="${users}" path="..." z="J2H2Av88D17vcEn/RSy7w4Hy2kc="/> </form:create>



Reply With Quote
