I decided to try and pass a list of Panel objects to my jsp page. I have verified through debugger that the list is populated and passed on, but the problem I have now is that when it gets to a...
Type: Posts; User: neocool00; Keyword(s):
I decided to try and pass a list of Panel objects to my jsp page. I have verified through debugger that the list is populated and passed on, but the problem I have now is that when it gets to a...
Here is my delimia. I have three objects that inherit like so:
public class Brand extends BaseHibernateObject {
private String name;
private String shortName;
private Set products;...
Next problem. In my project, users can sign up for taste panels. The admin wants the ability to limit the number of panels a user can signup for on a weekly basis. To accomidate this, I have...
Oh the humanity!!! Found out that java is really picky about upper and lower casing. Apparently this: <%@taglib uri="http://www.springframework.org/tags" prefix="Spring"%>, will not render data...
I want to write some Java code on a jsp page using <%%> tags. What I'm wondering is how do I get to the bound object passed in by spring within the script block?
I've written several forms for a project I'm working on. Up to this point, they all have worked. Now all of sudden, I have one that is not wanting to cooperate. This is what I've got.
Here is my...
@cwilkes,
You are the man!! Thanks for all of you help. This is what worked (which is pretty much what you wrote with one exception:
PanelTypePropertyEditor ptpe = new...
i think that's the problem too, b/c when i step through the code in debug mode, it never hits the getters and setters for tpManager. How do I register it so that it does?
Ok, upon further investigating, the class is not recognizing tpManager. When I step through the code in debug mode as soon as it hits that line, it goes to the catch part instaed of stepping into...
@cwilkes,
I guess I should have explained that. tpManager comes from this:
Which handles all of my calls to the database (i.e. getPanelTypeById). I don't think that is what is causing my...
@cwilkes,
Thanks for the tip, however, I'm still coming up short. This is what I've done:
I've created my PanelTypePropertyEditor class
public class PanelTypePropertyEditor extends...
First off, let me say that I am new to the whole Java/Hibernate/Spring world. I am working on my first project and I've gotten stuck. Here is my problem. I have two objects, Panel and PanelType....