DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
| Excerpt | ||
|---|---|---|
| ||
How to use a files with an extension other than ".html" as templates |
| Info | ||
|---|---|---|
| ||
The Wicket 1.2.x version of this page can be found here. |
To accomplish this you need to override the WebPage.getMarkupType() method in your page class.
For instance, the default:
| Code Block |
|---|
public String getMarkupType() {
return "html";
}
|
can be overridden to be something like:
| Code Block |
|---|
public final String getMarkupType() {
return "xhtml";
}
protected final void configureResponse() {
super.configureResponse();
getResponse().setContentType("text/html");
}
|
See the source code for the Alternative Markup (XML) example for a more complete demonstration of this concept.