- howto set maximum upload size?
setMaxSize(Bytes.kilobytes(500));
no longer works (I'm inside a wizardstep and have no form component I can
access)



please make a jira issue for this.


- howto add ajax progress bar?
I added
    protected WebRequest newWebRequest(HttpServletRequest servletRequest)
    {
        return new UploadWebRequest(servletRequest);
    }
to application, but can't
add(new UploadProgressBar("progress", ???));
(what to use as second param/form? (I'm inside wizardstep)

Is there a way to get the form of the wizard?



getForm() doesn't work?
or you can visit the parents and test for it yourself.
The problem is that we are not in the 2.0 world so the parent structure
isn't there yet
so lazy create the uploadprogressbar?

maybe we should change the component so that the form is lazy initialized in
the onattach
of UploadProgressBar. (but that it has to be in the parent hierarchy)
So add a constructor without the form param

johan
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to