Answer the question
In order to leave comments, you need to log in
JSF. How to explicitly set formatting for an XHTML page?
You must explicitly format the source code of the returned XHTML file so that it contains tabs.
Example
Now
<!DOCTYPE html>
<html xmlns="..."><head><script type="..." src="..."></script></head>
<body><form id="..." name="..." method="..." enctype="..."><input id="..." name="..." type="..." value="" /><input id="..." name="..." type="..." value="..." onclick="..." value="..." /></form><span id="..."></span>
</body>
</html>
<!DOCTYPE html>
<html xmlns="...">
<head>
<script type="..." src="..."></script>
</head>
<body>
<form id="..." name="..." method="..." action="..." enctype="...">
<input id="..." name="..." type="..." value="" />
<input id="..." name="..." type="..." value="..." onclick="..." />
</form>
<span id="..."></span>
</body>
</html>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question