docs(input): add note about text input events

Closes https://github.com/driftyco/ionic-site/issues/991
This commit is contained in:
mhartington
2017-02-17 11:48:28 -05:00
parent fae38f910c
commit da14042094

View File

@ -27,11 +27,14 @@ import { Platform } from '../../platform/platform';
* element it's able to better handle the user experience and
* interactivity.
*
* Similarily, `<ion-textarea>` should be used in place of `<textarea>`.
* Similarly, `<ion-textarea>` should be used in place of `<textarea>`.
*
* An `ion-input` is **not** used for non-text type inputs, such as a
* `checkbox`, `radio`, `toggle`, `range`, `select`, etc.
*
* Along with the blur/focus events, `input` support all standard text input
* events like `keyup`, `keydown`, `keypress`, `input`,etc. Any standard event
* can be attached and will function as expected.
*
* @usage
* ```html