I unfortunately had to give up on the issue due to the project timeline and was never able to determine a solution.
Type: Posts; User: rynmrtn; Keyword(s):
I unfortunately had to give up on the issue due to the project timeline and was never able to determine a solution.
What view technology are you using for your view? JSP/JSF/Something-else?
I hear your thoughts on using existing functionality, but sometimes you're going to have to write your own code. You are...
There are a couple of potential responses, depending on the technology stack you are using:
With JSF, you can use some of the f: tags to force an explicit conversion for the h:input fields.
If...
I am developing an application that has multiple persistence units and would like to be able to run (integration) test cases that will allow my beans to use both of them
Searching around the...
I did quite a bit of hunting on this issue, but did not find any easy solutions.
While I no longer have the specific details of the solution, I was able to make it work by overriding a method in...
It has been a while since my original post, but I wanted to share the solution that we are now using. Hopefully it can help someone.
First, define your converter class and implement the interface...
You can put any reference to an id in the processIds parameters, separated by commas. I have used many types of elements in my work - and as long as they have an id reference, it should work just...
As jeremgyg484 pointed out, processIds do not affect what is submitted from the page. Rather, it can be used for purposes like validation. If your value is null in the flow, it is not likely caused...
While it is not the most elegant, you could always do this via JavaScript.
window.onload = function() {
var elem = /* your element */
elem.style.class = "yourCssClass";
}
I posted this in the JSF Forums, but they passed the buck and told me to post it here.
I am using Spring MVC 2.5 with JSF, and I'm running into a weird issue with the action attribute on the form...
Thanks for the clarification!
I can't find any documentation on processIds. I have been using them throughout my project in the following way:
<sf:commandButton ... processIds="..." />
processIds="*"...
This is likely a multi-pronged question, but is there anyway that I can stop Spring from injecting Dojo into the code? It is my intention to use the latest Dojo release, and it appears that Spring...
Removed...
Does anyone have any resources on how to create a custom converter, define it in the configuration, and eventually use it?
It seems there are some posts in this forum about it, but the...