No one?? I just want a brief explanation how I can handle that.
Thanks.
Type: Posts; User: libman; Keyword(s):
No one?? I just want a brief explanation how I can handle that.
Thanks.
Hi everyone,
I would like to use Spring for my project, so I have some questions.
I will have a role Admin who can edit personal information of clients. But I also want clients to be able to...
If editable is a boolean, you can also do:
<c:if test="${editable == true}>
some output
</c:if>
Maybe JSTL checks it as a String.
I already did what you said :)
My english isn't that good.
Thanks for your reply.
What I did:
Adding userId parameter in the Project class, and set it to the id of the user object when loading the form (in formBackingObject(...)). I also linked the dropdownlist with that userid.
I have a form where I want to choose from users. Default, the user from the project is selected. The usersList is a list of User objects. The field must get a object input, so I wrote a initBinder to...