react-mask-mixin
react-mask-mixin copied to clipboard
Input mask for text input http://borbit.github.io/react-mask-mixin/
I've just installed the mixin in a new React project and I got this warning in the console (but it's still working) (`MarkedInput` is my `` wrapper): > Warning: MaskedInput.getDOMNode(...)...
Traditional value changing through state doesn't seem to work. In the following example, whenever `save()` is called the `state.date` gets empty successfully but the field UI keeps its value. ```...
http://borbit.github.io/react-mask-mixin/ If you click first input(filled with numbers) at the middle of it and then click somewhere else on page - all data after carret will be deleted(see this screencast...
On android devices there is a bug with caret position with alphabetical mask in example
Element value cut by cursor position even if value is properly filled. Check _onBlur function. Fast fix: this.mask.props.value = value.substr(0, cursor) -> this.mask.props.value = value.substr(0, value.length)
Today, it's impossible to simply erase characters using backspace. So I did this little patch to fix this behavior.