smruti-bapi / dwpe

Automatically exported from code.google.com/p/dwpe
MIT License
0 stars 0 forks source link

Ability to specify settings on a per-row basis #58

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Something such as:
<table >
    <caption>Some Title</caption>
    <thead>
        <tr>
            <td></td>
            <th scope="col">Col 1</th>
            <th scope="col">Col 2</th>
        </tr>
    </thead>
    <tbody>
        <tr lineWeight="1" type="line">
            <th scope="row">Line 1</th>
            <td>50</td>
            <td>100</td>
        </tr>
        <tr lineWeight="2" type="bar">
            <th scope="row">Line 2</th>
            <td>100</td>
            <td>150</td>
        </tr>
    </tbody>
</table>

Since each row of the table is rendered separately it would seem very easy to 
extract settings on a per row basis like this.

Original issue reported on code.google.com by jason%ja...@gtempaccount.com on 18 Feb 2011 at 5:25