ng
Name | Description |
---|---|
input[text] | Standard HTML text input with angular data binding, inherited by most of the |
input[date] | Input with date validation and transformation. In browsers that do not yet support
the HTML5 date input, a text element will be used. In that case, text must be entered in a valid ISO-8601
date format (yyyy-MM-dd), for example: |
input[datetime-local] | Input with datetime validation and transformation. In browsers that do not yet support
the HTML5 date input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
local datetime format (yyyy-MM-ddTHH:mm:ss), for example: |
input[time] | Input with time validation and transformation. In browsers that do not yet support
the HTML5 time input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
local time format (HH:mm:ss), for example: |
input[week] | Input with week-of-the-year validation and transformation to Date. In browsers that do not yet support
the HTML5 week input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
week format (yyyy-W##), for example: |
input[month] | Input with month validation and transformation. In browsers that do not yet support
the HTML5 month input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
month format (yyyy-MM), for example: |
input[number] | Text input with number validation and transformation. Sets the |
input[url] | Text input with URL validation. Sets the |
input[email] | Text input with email validation. Sets the |
input[radio] | HTML radio button. |
input[checkbox] | HTML checkbox. |