HTML <datagrid> Tag

❮ Previous Reference Next ❯

Deprecated: Not Supported in HTML5.

Example

<datagrid>
<ol>
  <li>1</li>
    <ol style="list-style-type:lower-alpha;">
      <li>1.1</li>
      <li>1.2</li>
    </ol>
  <li>Data.2</li>
    <ol style="list-style-type:lower-alpha;">
      <li>2.1</li>
      <li>2.2</li>
    </ol>
  </ol>
</datagrid>

Meaning

The <datagrid> element represent data in datagrid either list wise or tree wise. It is used to set row or column grid and split number of individual column grid.

HTML <datagrid> element introduce in HTML5. But now this tag has been removed from the HTML5 specification.

Version: HTML5




Standard Syntax

<datagrid>...</datagrid>



Browser Support




Status







Attributes

Attribute Value Description
disabled disabled Specifies datagrid is disabled.
multiple multiple Specifies user can select multiple rows items at once.



Global Attributes

<datagrid> element also supports the Global Attributes in HTML.


Event Attributes

<datagrid> element also supports the Event Attributes in HTML.




Related Pages:

See <ul> Element.

See <ol> Element.

❮ Previous Reference Next ❯