Skip to content

Commit

Permalink
#45 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
udos86 committed Jul 5, 2016
1 parent 3dfad76 commit 8ffbddb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
8 changes: 5 additions & 3 deletions modules/ui-basic/src/dynamic-form-basic.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@

<fieldset *ngSwitchCase="'CHECKBOX_GROUP'"
[formGroupName]="model.id"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand All @@ -46,8 +47,8 @@
[attr.accept]="model.accept"
[attr.autoComplete]="model.autoComplete"
[attr.list]="model.listId"
[attr.maxlength]="model.maxLength"
[attr.max]="model.max"

[attr.min]="model.min"
[attr.multiple]="model.multiple"
[attr.step]="model.step"
Expand All @@ -73,7 +74,8 @@

<fieldset *ngSwitchCase="'RADIO_GROUP'"
role="radiogroup"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@

<fieldset *ngSwitchCase="'CHECKBOX_GROUP'"
[formGroupName]="model.id"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand Down Expand Up @@ -106,7 +107,8 @@

<fieldset *ngSwitchCase="'RADIO_GROUP'"
role="radiogroup"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@

<fieldset *ngSwitchCase="'CHECKBOX_GROUP'"
[formGroupName]="model.id"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand Down Expand Up @@ -90,7 +91,8 @@

<fieldset *ngSwitchCase="'RADIO_GROUP'"
role="radiogroup"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand Down
3 changes: 2 additions & 1 deletion modules/ui-material/src/dynamic-form-material.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

<fieldset *ngSwitchCase="'CHECKBOX_GROUP'"
[formGroupName]="model.id"
[id]="model.id">
[id]="model.id"
[name]="model.name">

<legend *ngIf="model.legend">{{model.legend}}</legend>

Expand Down

0 comments on commit 8ffbddb

Please sign in to comment.