Skip to content

Commit

Permalink
docs(select): add docs for static placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
kara committed Mar 8, 2017
1 parent d78a370 commit fb6d2cd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/lib/select/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@ class MyComp {
}
```

### Setting a static placeholder

It's possible to turn off the placeholder's floating animation using the `floatPlaceholder` property. It accepts one of three string options:
- `'auto'`: This is the default floating placeholder animation. It will float up when a selection is made.
- `'never'`: This makes the placeholder static. Rather than floating, it will disappear once a selection is made.
- `'always'`: This makes the placeholder permanently float above the input. It will not animate up or down.

*my-comp.html*
```html
<md-select placeholder="State" [(ngModel)]="myState" floatPlaceholder="never">
<md-option *ngFor="let state of states" [value]="state.code">{{ state.name }}</md-option>
</md-select>
```

#### Keyboard interaction:
- <kbd>DOWN_ARROW</kbd>: Focus next option
- <kbd>UP_ARROW</kbd>: Focus previous option
Expand Down

0 comments on commit fb6d2cd

Please sign in to comment.