0

In my eclipse html Editor, I see these errors - Error: <wicket:panel> is not recognized! I have included in the html tag the following but it is not still helping

    <html xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">

Can anyone suggest a solution? Thanks

4

2 回答 2

2

To use the latest xsd try the following snippet

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:wicket="https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=blob_plain;f=wicket-core/src/main/resources/META-INF/wicket-1.5.xsd;hb=master">
于 2013-04-12T11:16:23.610 回答
0

I always use pretty much the same tag but with the xmlns added.

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">

Hope it helps.

于 2013-04-12T08:10:29.083 回答