You should most likely do incremental migration, e.g.:

 * 1.4.x -> 1.5.x
 * 1.5.x -> 6.0.x
 * 6.0.x -> 7.0.x

In between each migration, check what is now deprecated, which then will most likely have information about its replacements.

As for your specific issue, there's some information that seems somewhat relative to that in the Wicket 7 migration guide


          InlineFrame uses IPageProvider WICKET-5347
          <https://issues.apache.org/jira/browse/WICKET-5347>

IPageLink has been removed because it was superseded by IPageProvider. Its last usage has been removed from InlineFrame

Having still yet to migrate from 1.5.x I cannot help you more though.


On 21/08/15 12:13, Jörg Schaible wrote:
Hi,

I have never worked with Wicket, but should migrating an application from
1.4.x to 7.0. I am searching a replacement for
org.apache.wicket.markup.html.link.PageLink. It no longer available and is
not mentioned anywhere in the migration guides.

Following elements are added in the constructor of a derived WebPage:

================= %< ===============
  final DataDetachableModel DataDetachableModel = new
DataDetachableModel(model);
  add(new FilterForm("filterForm", dataDetachableModel));
  add(new DataTable("data", dataDetachableModel));
  add(new PageLink("newData", DataCreatePage.class));
================= %< ===============

The PageLink class no longer exists ...

What can I use now?

Cheers,
Jörg


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


Reply via email to