Closed GoogleCodeExporter closed 9 years ago
This patch should fix the issue, please include in the next release. I would
have also provided unit tests for it, but the wicket framework and its final
methods make it close to impossible to send mock data.
Original comment by radu.bar...@gmail.com
on 30 Mar 2011 at 7:51
Attachments:
Many thanks !!
I will push this patch for the next release
Best regards
Julien Roche
Original comment by roche....@gmail.com
on 31 Mar 2011 at 6:40
Changes on the patch when we will use the wicket 1.5:
public final void onResize(AjaxRequestTarget target) {
int height = this.getComponent().getRequest().getQueryParameters().getParameterValue(
RESIZED_HEIGHT).toInt();
int width = this.getComponent().getRequest().getQueryParameters().getParameterValue(
RESIZED_WIDTH).toInt();
onResize(height, width, target);
}
Fix in r738
Original comment by roche....@gmail.com
on 31 Mar 2011 at 8:53
Original issue reported on code.google.com by
radu.bar...@gmail.com
on 30 Mar 2011 at 7:01