#3560 closed enhancement (fixed)
0.9: Add in a prototype HtmlTableStore.
Reported by: | Jared Jurkiewicz | Owned by: | Jared Jurkiewicz |
---|---|---|---|
Priority: | high | Milestone: | 0.9 |
Component: | Data | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
0.9: Add in a prototype HtmlTableStore?.
Adding in a simple prototype of an HtmlTableStore? that can load html tables of general format: <table id="myTable">
<thead>
<tr>
<th>Attribute1</th> <th>Attribute2</th>
</tr>
</thead> <tbody>
<tr>
<td>Value1.1</td> <td>Value1.2</td>
</tr> <tr>
<td>Value2.1</td> <td>Value2.2</td>
</tr>
</tbody>
</table>
For use with charting widgets when charting drops in.
Attachments (1)
Change History (4)
Changed 14 years ago by
Attachment: | dojox.data.HtmlTableStore_20070628.patch added |
---|
comment:1 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
(In [9363]) Checking in a prototype HtmlTableStore? written by Ben Schell for later use with charting code. fixes #3560
comment:2 Changed 14 years ago by
Note: Ben Schell is a co-worker of mine and this contribution is covered by the same corporate CLA mine are.
Tested the store on: IE 6 Firefox 2.0.0.4 Safari Beta 3 Seamonkey 1.1.2
comment:3 Changed 14 years ago by
Type: | defect → enhancement |
---|
Simple new prototype store, HtmlTableStore?