show-notice
hide-notice

Friday 9 August 2013

HTML 5 datagrid Tag


Introduction:

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 data DOM 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>

SHARE THIS POST   

0 comments :

Post a Comment

Design by Gohilinfotech | www.gohilinfotech.blogspot.com