Write plain html when encoding in JSF

C

cool2005

I tried to create a JFS tag component containing two or more HTML
tables but by default
writer.endElement and writer.startElement seems to deal with a single
HTML
component only.

How do people output their HTML in case that they want to write
something like

<table>...</table>
<table>...</table>

in a encodeBegin or encodeEnd?

Will it following way

public void encodeBegin(FacesContext context) throws IOException
{
ResponseWriter writer = context.getResponseWriter();

writer.writeText("<table>...</table>
<table>...</table>", null);

}

work?

thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top