Tzu ng
Tzu ng

Reputation: 9244

facelet - img tag

Questions:

I've tried using the html tag and it fails. Thanks first

Upvotes: 0

Views: 485

Answers (1)

planetjones
planetjones

Reputation: 12633

The Facelets are just XHTML mark-up, so you can use the standard HTML image tag if you want, provided it's well formed e.g.

<img src="myfolder/myimage.jpg"/>

Or you can use a JSF component to render it e.g.

<h:graphicImage library="myfolder" name="myimage.jpg"/>

Upvotes: 4

Related Questions