Embedded view on web

i am having trouble with the display properties of embedded view being displayed on the web. …

On the embedded view properties box i hav set the width option to fit the window (100%) but this is not being reflected in the HTML table for embedded view generated by Domino.

that is table rows shrink to content size…i dont want that happening…i have also checked the view property “extend last column to window width”…but even that doesnt help

is there some way that embedded view row widths extends to window width on the web…

Subject: embedded view on web

Domino does not assign a width attrinute to “display using HTML” view tables. You can set the width using javascript or CSS, or you can set the view to “Treat view content as HTML” and have complete control over the view’s rendering.

Subject: RE: embedded view on web

You could also wrap the embedded view in passthru HTML table tags that set the table width. I’ve done this a few times in the past to get cellpadding.

Just make sure the very last thing on the form before the embedded view is a passthru table tag:

table width=“100%” (in angle brackets; the forum strips them)

and the very next thing after the embedded view is a closing table tag.