Does anyone know how I can dynamically render fields from a database?
For example, I have a form where I store "My name is ${person.name}." in a field.
No matter what I try, the show page...
Type: Posts; User: jsandman; Keyword(s):
Does anyone know how I can dynamically render fields from a database?
For example, I have a form where I store "My name is ${person.name}." in a field.
No matter what I try, the show page...
In your Empoyer.java entity. Add the @OrderBy("sortField") annotation to the OneToMany section.
Thank you so much! I wanted to do the same thing and be able to put everything in my Roo script. Thanks for figuring it out and posting the solution. I couldn't figure it out myself.
:)
What code coverage tool is recommended for use with Spring Roo projects?
I am getting push back from management on being able to use Roo because their code coverage tool does not catch AspectJ...
Apparently no one uses this command.
The documentation is clear, but perhaps I am missing something because I can't get it to work for me.
Can someone please give me an example of how to create/set a properties file parameter in the...
We are trying to have our tables be sortable. Can someone tell me how the dojo libraries are included in roo projects?
It seems that it is being provided by the insight.war but I am having trouble...
Thanks so much!
The param.theme works perfectly.
But cookie.theme isn't giving me the name.
This is an example of what I am getting:
The session theme is: alt
The cookie theme is:...
I have a strange requirement where different sections of an application need to have different color schemes.
I was thinking of creating a theme for each area.
Can someone give me an easy way...
http://jira.springframework.org/browse/ROO-556
FYI... I made the switch from my desktop MySql database to our oracle RAC environment and noticed that Oracle has issues with the fieldname 'number'.
1) Here is the roo script
project...
Does anyone have a simple example of a web services implementation on a roo generated project?
XFire may be a good way to go. I need to provide 'simple' web services interfaces for shared services...
I have seen a similar problem and have determined a workaround.
The application I am working on has several 1:MANY and MANY:MANY relationships. I noticed that only half of my forms were being...
Here is the link to Spring documentation:
http://static.springsource.org/spring/docs/3.0.0.RC3/spring-framework-reference/html/ch16s02.html#view-jsp-formtaglib-optiontag
Not sure if others are having this problem, but I had to do a bit of research for a very simple and likely very common issue.
Roo generated forms that create select lists default to the first...
Well... I'm not too sure this is the best way to accomplish what I need, but here is what I have working:
<div id="roo_vet_specialties">
<c:if test="${not empty...
Added: https://jira.springsource.org/browse/ROO-468
:-)
FYI... for some reason the forum isn't allowing for the correct c:out value, but the info above should be clear enough to interpret. Sorry about that.
Here is a change that I would recommend to the \src\main\webapp\WEB-INF\layouts\default.jspx:
Change this:
<c:if test="${pageContext.request.userPrincipal != null}">
<c:out value="*|*"/>...
Is there a way to filter the values on a table sourced select list (combo box or multi-select)?
For example, using the Pet Clinic sample. If you added a boolean column called 'active' for the...
I think I figured out my problem. I was including the security tag library in my layouts/default.jspx page, assuming it would take effect on my views/index.jspx page. It didn't.
So I added it to...
This is exactly the issue I was having. If you figure out the exact fix, let me know. I will tinker with my project some more and hopefully it will start working for me too.
Thanks. Ben.
I tried to use the authz tag library but am still not able to get a working example. I am new to Spring Security so am learning as I go.
I figured it out by looking at the src/main/webapp/WEB-INF/layouts/default.jspx page.
All I had to do was use: ${pageContext.request.userPrincipal.name}. See below for an example of how I am...
I know this is a dumb question, but I can't seem to figure out how to display the current logged in user in my roo generated application. Roles and authentication are working fine, just can't display...