cycle.scheduleRequestHandlerAfterCurrent(new ComponentRenderingRequestHandl
er(...))

This API has changed with Wicket 1.5. You may want to read its migration
page since you migrate from older version directly to Wicket 6


On Wed, Dec 12, 2012 at 10:51 AM, Marios Skounakis <msc...@gmail.com> wrote:

> Hi all,
>
> I found this old code:
>
> getRequestCycle().setRequestTarget(new ComponentRequestTarget(dataTable));
> WebResponse wr = (WebResponse) getResponse();
> wr.setContentType("application/vnd.ms-excel; charset=UTF-8");
> wr.setCharacterEncoding("UTF-8");
> wr.setHeader("content-disposition", "attachment;filename=excel.xls");
>
> I understand all the drawbacks of getting the HTML from a data table and
> disguise it as an excel file, but I have a similar use case that I want do
> get and return the markup of a single component.
>
> The above code contains classes and methods that have been removed. Can
> someone please provide the wicket 6 equivalent of the above?
>
> Thanks
> Marios
>



-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com <http://jweekend.com/>

Reply via email to