I want to show images like Google image search using JSF 1.2. I tried using <h:dataTable />
inside another <h:dataTable />
but is not working.
Asked
Active
Viewed 171 times
0

Luiggi Mendoza
- 85,076
- 16
- 154
- 332

Sathesh S
- 1,253
- 3
- 23
- 54
-
You can't accomplish it with basic JSF 1.2, it lacks many options that were introduced on JSF 2. Hint: you *should* train yourself in JSF 2 instead of JSF 1.2. – Luiggi Mendoza Jan 25 '13 at 22:22
1 Answers
0
Try Richfaces DataGrid, combined with <a4j:mediaOutput/>
to display images if you have them in local server or use html's standard <img/>
tag if you want to link them from the Internet.

Aritz
- 30,971
- 16
- 136
- 217
-
I am creating the website for training purpose, is it possible to do with normal h and f tags. – Sathesh S Jan 21 '13 at 16:44