I have a mvc generated view and I want some fields not be displayed when updating the entry.
So I set the render attribute of the field:input tag to false
All test work as expected, so I ran the application in jetty with mvn jetty:run.Code:<field:input field="login" id="c_test_domain_Account_login" z="user-managed" render="false"/>
I added some entries for Client and aAcount.
After updating an entry of Account the value of the field login becomes empty. That is not the desired behavior. I justed wanted the value not to be changed.
I added the roo script, where I only changed the render attribute of the login field mentioned above in
${PROJECT_HOME}/src/main/webapp/WEB-INF/views/accounts/update.jspx


Reply With Quote