forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from ionic-team/master
pull `master`
- Loading branch information
Showing
15 changed files
with
243 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<ion-header> | ||
<ion-toolbar> | ||
<ion-title> | ||
Forms test | ||
</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
|
||
<ion-content> | ||
<form [formGroup]="profileForm"> | ||
<ion-list> | ||
|
||
<ion-item> | ||
<ion-label>DateTime</ion-label> | ||
<ion-datetime formControlName="datetime" min="1994-03-14" max="2017-12-09" display-format="MM/DD/YYYY"></ion-datetime> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-label>Select</ion-label> | ||
<ion-select formControlName="select"> | ||
<ion-select-option value="">No Game Console</ion-select-option> | ||
<ion-select-option value="nes">NES</ion-select-option> | ||
<ion-select-option value="n64" selected>Nintendo64</ion-select-option> | ||
<ion-select-option value="ps">PlayStation</ion-select-option> | ||
<ion-select-option value="genesis">Sega Genesis</ion-select-option> | ||
<ion-select-option value="saturn">Sega Saturn</ion-select-option> | ||
<ion-select-option value="snes">SNES</ion-select-option> | ||
</ion-select> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-label>Toggle</ion-label> | ||
<ion-toggle formControlName="toggle" slot="end"></ion-toggle> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-label>Input (required)</ion-label> | ||
<ion-input formControlName="input"></ion-input> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-label>Input</ion-label> | ||
<ion-input formControlName="input2"></ion-input> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-label>Checkbox</ion-label> | ||
<ion-checkbox formControlName="checkbox" slot="start"></ion-checkbox> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-label>Range</ion-label> | ||
<ion-range formControlName="range"></ion-range> | ||
</ion-item> | ||
|
||
</ion-list> | ||
<p> | ||
Form Status: <span id="status">{{ profileForm.status }}</span> | ||
</p> | ||
<p> | ||
Form Status: <span id="data">{{ profileForm.value | json }}</span> | ||
</p> | ||
<ion-button type="submit" [disabled]="!profileForm.valid">Submit</ion-button> | ||
|
||
</form> | ||
<ion-list> | ||
<ion-item> | ||
<ion-label>Outside form</ion-label> | ||
<ion-toggle [formControl]="outsideToggle"></ion-toggle> | ||
<ion-note slot="end">{{outsideToggle.value}}</ion-note> | ||
</ion-item> | ||
</ion-list> | ||
<p> | ||
<ion-button (click)="setValues()" id="set-button">Set values</ion-button> | ||
</p> | ||
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Component } from '@angular/core'; | ||
import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms'; | ||
|
||
@Component({ | ||
selector: 'app-form', | ||
templateUrl: './form.component.html', | ||
}) | ||
export class FormComponent { | ||
|
||
profileForm: FormGroup; | ||
outsideToggle = new FormControl(true); | ||
|
||
constructor(fb: FormBuilder) { | ||
this.profileForm = fb.group({ | ||
datetime: ['2010-08-20', Validators.required], | ||
select: [undefined, Validators.required], | ||
toggle: [false], | ||
input: ['', Validators.required], | ||
input2: ['Default Value'], | ||
checkbox: [false], | ||
range: [20, Validators.min(10)], | ||
}, {updateOn: 'blur'}); | ||
} | ||
|
||
setValues() { | ||
this.profileForm.patchValue({ | ||
datetime: '2010-08-20', | ||
setValue: 'nes', | ||
toggle: true, | ||
input: 'Some value', | ||
input2: 'Another values', | ||
checkbox: true, | ||
range: 50 | ||
}); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.