sdnetwork,
Thanks for the info, I'll have to give backbone.js a good look. I'm curious, what do you think of closure, and plastronjs? What are some of the advantages and disadvantages of using...
Type: Posts; User: howler9443; Keyword(s):
sdnetwork,
Thanks for the info, I'll have to give backbone.js a good look. I'm curious, what do you think of closure, and plastronjs? What are some of the advantages and disadvantages of using...
Hello all,
I currently have a Spring (3.1) MVC web app, that currently uses Apache Tiles 2.x, JQuery/Wijmo along with MongoDB. I'm using "fragments" and ajax to make the app work like a single...
Oliver,
Sorry for the delay. But I e been trying to reproduce the issue without success. I will keep an eye on the app and see if it occurs again. Thanks again for your help.
Thanks Oliver, when I get home from work today, I'll give that a shot. I'm not pre-initializing things. I wonder if it could be because I extend the PagingAndSortingRepository, and that the...
Hello everyone,
I'm not sure if this is something that I am doing wrong or if its Spring Data or Mongo.
I'm writing an app using Spring MVC, Spring Data and MongoDB. When my view requests data...
Mattharr,
Thanks for the reply, I really appreciate it. PrimeFaces seems to have a set of widgets that my app and my client would really benefit from, and I feel that I could get very creative...
PDSB_Greg,
Thanks for posting this information. I'm about to do some similar things as you and this post with the solution is great!
Thanks!
John
Just curious if anyone is using JSF2/Primefaces with Spring 3.0/3.1 and if so, what was/is your experience like with it thus far?
I'm considering using Primefaces in an upcoming UI refactor since...
This is a bit of a newbie question but here goes...
Is it possible to dynamically have a backing class based on a value in a hidden field on a form or to bind to a class based on whats coming in...
Great! Lovin' da Roo! Thanks Alan!
It did not update the pom.xml automatically for me. I simply updated the pom manually, and rebuilt the project and didn't have any issues.
Thanks for sharing your findings. I'm sure it will be useful to others. :)
Thanks Alan, the thing is, I don't actually want the backing class to be the entity. I think I understand what you are saying though.
If I understand correctly, if I specify a backing type that...
Alan,
Sorry for the late reply, but between work and being sick, I just now completed this. Here is the link to the Roo ticket.
https://jira.springsource.org/browse/ROO-3009
Thanks,
John
Thanks Alan, I be glad to do that. Thanks for your help! :)
Hi Alan,
I sure can. However, I'll have to send it when I get home tonight. How would you prefer I get it to you?
Thanks,
John
Hi Alan,
Yes, it has several fields in it in fact. There are no Roo annotations in the POJO, its just a clean class. My intent is to just use it as a class for backing the web form and then to...
Hello all.
I've been working on a project with Roo. I started with Roo 1.1.5, and have been steadily upgrading and working through various issues with the upgrades.
I'm using STS and when I...
Hi all,
I'm still working on my soft delete issue with @SQLDelete. I've changed things up a bit in hopes that a little experimentation would yield some sort of result.
Here is what I've found...
I originally had it without the parens. I did see another example that had the parens. Basically, I was to the point of "Oh well, can't do any harm, except for blow up." ;-)
Hello all,
Has anyone had any success with using the Hibernate specific annotation of @SQLDelete in a Roo entity?
I want to implement soft delete but have not had much success. Ideally, I'd...
Ok, I think I found the issue. It boils down my not knowing dojo that well.
In the above code example, I have the form line as:
<form:form id="editClientForm" dojoType="dijit.form.Form"...
Hello everyone,
I'm working on a project that I started with Roo (1.1.5), I refactored the controller via "push-in" and have complete control.
I wanted to re-use the same form fields from my...
Ok, apparently, I had to setup an InitBinder in my controller, as such:
@InitBinder
public void initBinder(WebDataBinder dataBinder)
{
dataBinder.setDisallowedFields(new String[]...
It was a bit odd...but I had a several break points set in the controller so that I would be sure that I would get a break somewhere. But it never stopped on any of the break points. I finally...