Introduction:
The HTML
A datagrid represents an interactive representation of tree, list, or tabular data. The data being presented can come from one of the following:
Example:
The HTML
<datagrid> tag is used for specifying a datagrid. A datagrid represents an interactive representation of tree, list, or tabular data. The data being presented can come from one of the following:
- Its own content (as elements given as children of the datagrid element). The
<datagrid>element can contain other HTML elements. These elements are its children. The contents of its children is the data that is being presented. - From a scripted data provider given by the
dataDOM attribute.
Example:
<datagrid>
<ol>
<li> (datagrid row 0) </li>
<li> (datagrid row 1)
<ol style="list-style-type:lower-alpha;">
<li> (datagrid row 1,0) </li>
<li> (datagrid row 1,1) </li>
</ol>
</li>
<li> (datagrid row 2) </li>
</ol>
</datagrid>
0 comments :
Post a Comment