Hi All,
Can I call a view inside a HTML code and also within a Table. I want a row created in the table for each record in the view. Is it possible? and if so could somebody send me a sample code.
Cheers,
Buwaneka
Hi All,
Can I call a view inside a HTML code and also within a Table. I want a row created in the table for each record in the view. Is it possible? and if so could somebody send me a sample code.
Cheers,
Buwaneka
Subject: HTML Views
Yes, do the following:
On your form/page write the table start and end tags as pass-thru HTML. Embed
your view between these tags, and set it to display using HTML and not as a
Java Applet.
In your view, check ‘Treat View Contents as HTML’ under the advanced tab of the
view properties. Now add the Table row and cell tags into the view. For
example you could do the following in your view column:
“[ ]” + YourFieldNameHere + “[ ]”
Hope that helps. If that’s not what you’re after, post some more details as to
what you are trying to achieve.
Subject: HTML Views
s