Websydian v6.1 online documentationOnline documentation - Websydian v6.1

FAQ - To much white space in cells of the grid

Product Websydian
Version All
Category Deployment
Question The tables have to much space within the cells
Answer

The Websydian document templates comply with HTML 4.0, and HTML 4.0 specifies that no non-table related tags may occur within a table except when placed inside a cell element (<TD>).

  • In the document templates using grids move the FORM end and start tag outside the TD tag, e.g.
     
    <TD>
    <FORM .........>
    ..
    ..
    </FORM>
    </TD>
    TO <FORM ..........>
    <TD>
    ..
    ..
    </TD>
    </FORM>

Note that the resulting HTML document no longer complies completely to the HTML 4.0 standard.