Raised http://jira.springframework.org/browse/SPR-6790
Type: Posts; User: theTav; Keyword(s):
Raised http://jira.springframework.org/browse/SPR-6790
Ok, I'm pretty sure this one is a defect...
AbstractHtmlInputElementTag.isDisabled has the single line:
return "true".equals(evaluate("disabled", getDisabled()));
evaluate returns an object,...
ach, I hate it when that happens, 20 minutes more of googling came up with the existing thread:
http://forum.springsource.org/showthread.php?t=54509
Where the response seemed to be:
But to...
I'm having trouble handling iterations within forms.
Say I have a collection of Foo instances on my backing object. I want to render a text input element for the bar property on each of those...
I've been playing around with the spring form taglib lately and came across a fairly disturbing phenomenon.
<form:select path="whatever" disabled="${true}">
Will render a select element that is...
I came accross this article:
http://www.devx.com/webdev/Article/28041/0/page/3
Which seems to show an easy way for me to start integrating spring-webflow with my current project and begin the...
What specifically is going wrong? Have you tried logging/debugging from within your autowireBean method?
I had trouble when extending the spring implementation. Creating a completely separate...
Just found my answer in the spring docs.
@Qualifier("beanName") achieves my goal.
There's a note about not using @Autowire and @Qualifier, but using @Resource instead, however I'm concerned...
I've finally gotten SpringBeanAutowiringInterceptor close to working under spring 2.5 on websphere 6.1 (ejb3 feature pack) but now I'm having trouble because we have multiple beans of the same type...
There's a Jira issue about this and it says it's closed and will be in spring 3, but no mention of a patch for 2.5
As an interim fix you can create your own injector implementation, copy the...