Oh man am I late on this one. Things have gotten a little hectic here. Anyway, you pointed me in the right direction. As soon as I passed the information the form was looking for into the model,...
Type: Posts; User: klb; Keyword(s):
Oh man am I late on this one. Things have gotten a little hectic here. Anyway, you pointed me in the right direction. As soon as I passed the information the form was looking for into the model,...
in the formBackingObject? It used to be "employeeLookup", but I changed it to "command" and still had the same errors. The commandName property of the bean is omitted so it should be "command" by...
Did you mean to use the "long" way to bind instead of springBind? I tried
#set( $status = $rc.getBindStatus("command.lookupValue") )
but it came back with the same exception:
...
I have a parent velocity bean that each specific page is a child of. The parent bean has the exposeSpringMacroHelpers set to true.
This is the parent bean:
<bean id="parentVelocityView"
...
I have an employee lookup form where you input an employee ID and it returns a list of matching employees. This works perfectly well. What I'd like to do is put the same form in the top of the...
ok, here's what fixed it. in my velocity form, i bound this form field:
"command.type[$i].columnType"
where $i is a simple iterator. note how there is a field with a property at the end. ...
it was a simple matter of setting multiple getters and setters, or beanlets, if you will. knew it would be something that made me feel dumb.
here's the command class (i've taken out all the javadoc comments, comments and debugger lines for brevity):
public class NewPayrollTemplateController extends AbstractWizardFormController {
...
i'm not sure this is the best place for this post but it's the best place my frazzled mind can think of. i am implementing an AbstractWizardFormController that should read an excel file, return the...
sorry for the delay ... thanks. it's what i figured i would hear but figured i would check anyway, just in case. i'll just save the files temporarily on disk and delete them when i'm done.
hmm, how best to describe this. i have successfully implemented reading an excel file via input stream and spring. now i'm trying to do something a bit trickier and i'm not sure if it's even...