Hi All
I am new to webgrid and i have the following simple question:
I need to render a record into multiple rows within webgrid? how do i do that?
Thank you very much for your help!
yak
Hi Yak!
There are a number of ways to do what you want. You should cehck out two things. The first is the core tag f:verbatim. The other is the escape attribute of most o fthe core library. These two things allow you to embed HTML tags in your code that will get passed to the browser for interpretation as HTML.
Another way is to wrap the code you place into the cell in h:panelGrid tags.
These are commonly used JSF tags and you can google the terms above to discover tutorials and examples.
Thanks!