Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is colspan not a known native attribute in Angular 2?

If we attempt code like this:

<td [colspan]="1 + 1">Column</td> 

or this:

<td colspan="{{1 + 1}}">Column</td> 

We soon find out that "colspan is not a known native attribute."

From the A2 docs we learn that:

the element does not have a colspan property. It has the "colspan" attribute, but interpolation and property binding can set only properties, not attributes.

We must instead do this:

<td [attr.colspan]="1 + 1">Column</td> 

Which is fair enough.

Question:

My question is, why is colspan not an attribute of the DOM, and if it is missing, how can the browser possibly render tables, since the browser renders the DOM and not the HTML?

Also, if I open my Chrome inspector, and go to the properties tab, why can I see colspan as a property of the Element?

Why does the DOM exhibit this inconsistency?

like image 688
superluminary Avatar asked Feb 25 '16 00:02

superluminary


People also ask

Is Colspan an attribute?

The colspan attribute defines the number of columns a cell should span.

What does Colspan 2 do?

It allows the single table cell to span the width of more than one cell or column.

What is the default value of the colspan attribute?

colspan = number [CN] This attribute specifies the number of columns spanned by the current cell. The default value of this attribute is one ("1"). The value zero ("0") means that the cell spans all columns from the current column to the last column of the column group (COLGROUP) in which the cell is defined.

Why is Colspan used?

The rowspan and colspan are <td> tag attributes. These are used to specify the number of rows or columns a cell should span. The rowspan attribute is for rows as well as the colspan attribute is for columns. These attributes have numeric values, for example, colspan=3 will span three columns.


1 Answers

**Similar example <label for=...>

Property and attribute aren't always 1:1. An often encountered example is the label tag

<label for="someId"> 

In Angular

<label [for]="someId">  

fails with the same error and you'd need to bind like

<label attr.for="{{someId}}"> 

or

<label [attr.for]="someId"> 

but

<label [htmlFor]="someId"> 

would also work because in this case htmlFor is the property that is reflected to the DOM for attribute. See also https://developer.mozilla.org/de/docs/Web/API/HTMLLabelElement for the htmlFor property (in the Properties section)

See also What is the difference between attribute and property?

colSpan the actual property name

According to https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement colSpan is the property that is reflected to the colspan attribute therefore (uppercase S)

<td [colSpan]="1 + 1">Column</td> 

See also https://plnkr.co/edit/BZelYOraELdprw5GMKPr?p=preview

works just fine.

Why does Angular bind to properties by default

Angular binds to the property by default for performance reasons. Binding to an attribute is expensive because attributes are reflected in the DOM and a change in the DOM can causes reevaluation of CSS styles that might match after the change, while properties are just a value in a JavaScript object that changed.
With attr. you opt in explicitely to the expensive behavior.

like image 98
Günter Zöchbauer Avatar answered Oct 12 '22 22:10

Günter Zöchbauer