You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Robert Kimotho <ki...@gmail.com> on 2010/04/13 15:16:17 UTC

Ajaxfallbackbutton and uploadprogressbar

Hi,
I'm using an uploadprogressbar in a form that is being submitted using
ajaxfallbackbutton, the following is the code,

final Form images = new Form("images_form");
			images.setMaxSize(Bytes.megabytes(7));
			final UploadProgressBar progress = new
UploadProgressBar("progress", images);
			progress.setOutputMarkupPlaceholderTag(true);
			images.add(progress);
			add(images);
....
images.add(new AjaxFallbackButton("change_img", images) {
...
}

this uploads with no errors! but the progress bar doesn't get displayed.
what could be the problem.

Regards.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org