umb-checkbox id renamed to input-id for it not to collide, since ids have to be unique.

This commit is contained in:
Niels Lyngsø
2019-03-08 12:40:24 +01:00
parent 129210946d
commit 2b7f12253f
2 changed files with 5 additions and 5 deletions

View File

@@ -22,14 +22,14 @@
</pre>
@param {boolean} model Set to <code>true</code> or <code>false</code> to set the checkbox to checked or unchecked.
@param {string} id Set the id of the checkbox.
@param {string} input-id Set the <code>id</code> of the checkbox.
@param {string} value Set the value of the checkbox.
@param {string} name Set the name of the checkbox.
@param {string} text Set the text for the checkbox label.
@param {string} serverValidationField Set the val-server-field of the checkbox.
@param {string} server-validation-field Set the <code>val-server-field</code> of the checkbox.
@param {boolean} disabled Set the checkbox to be disabled.
@param {boolean} required Set the checkbox to be required.
@param {string} onChange Callback when the value of the input element changes.
@param {string} on-change Callback when the value of the checkbox changed by interaction.
**/
@@ -56,7 +56,7 @@
controllerAs: 'vm',
bindings: {
model: "=",
id: "@",
inputId: "@",
value: "@",
name: "@",
text: "@",

View File

@@ -1,6 +1,6 @@
<label class="checkbox umb-form-check umb-form-check--checkbox" ng-class="{ 'umb-form-check--disabled': disabled }">
<input type="checkbox"
id="{{vm.id}}"
id="{{vm.inputId}}"
name="{{vm.name}}"
value="{{vm.value}}"
class="umb-form-check__input"