The HTMLTableRowElement interface provides special properties
methods (beyond the web.dom.HTMLElement
interface it also has
to it by inheritance) for manipulating the layout and presentation
rows in an HTML table.
The HTMLTableRowElement interface provides special properties methods (beyond the `web.dom.HTMLElement` interface it also has to it by inheritance) for manipulating the layout and presentation rows in an HTML table.
(align this)
Property.
Is a DOMString containing an enumerated value reflecting the attribute. It indicates the alignment of the element's contents respect to the surrounding context. The possible values are "left", and "center".
Property. Is a DOMString containing an enumerated value reflecting the attribute. It indicates the alignment of the element's contents respect to the surrounding context. The possible values are "left", and "center".
(delete-cell this & args)
Method.
Removes the cell at the given position in the row. If the given is greater (or equal as it starts at zero) than the amount of in the row, or is smaller than 0, it raises a DOMException with IndexSizeError value.
Method. Removes the cell at the given position in the row. If the given is greater (or equal as it starts at zero) than the amount of in the row, or is smaller than 0, it raises a DOMException with IndexSizeError value.
(insert-cell this & args)
Method.
The HTMLTableRowElement.insertCell() method inserts a new cell
into a table row (<tr>
) and returns a reference to the cell.
`var newCell = HTMLTableRowElement.insertCell(index);
web.dom.HTMLTableRowElement
is a reference to an HTML <tr>
element.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/insertCell
Method. The HTMLTableRowElement.insertCell() method inserts a new cell into a table row (`<tr>`) and returns a reference to the cell. `var newCell = HTMLTableRowElement.insertCell(index); `web.dom.HTMLTableRowElement` is a reference to an HTML `<tr>` element.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/insertCell`
(row-index this)
Property.
The HTMLTableRowElement.rowIndex read-only property represents
position of a row in relation to the whole <table>
.
var index = HTMLTableRowElement.rowIndex
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/rowIndex
Property. The HTMLTableRowElement.rowIndex read-only property represents position of a row in relation to the whole `<table>`. `var index = HTMLTableRowElement.rowIndex` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/rowIndex`
(set-align! this val)
Property.
Is a DOMString containing an enumerated value reflecting the attribute. It indicates the alignment of the element's contents respect to the surrounding context. The possible values are "left", and "center".
Property. Is a DOMString containing an enumerated value reflecting the attribute. It indicates the alignment of the element's contents respect to the surrounding context. The possible values are "left", and "center".
(set-row-index! this val)
Property.
The HTMLTableRowElement.rowIndex read-only property represents
position of a row in relation to the whole <table>
.
var index = HTMLTableRowElement.rowIndex
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/rowIndex
Property. The HTMLTableRowElement.rowIndex read-only property represents position of a row in relation to the whole `<table>`. `var index = HTMLTableRowElement.rowIndex` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/rowIndex`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close