Help on proto.ui

Hi all,
I have created a new text view which only permits to enter alphabetic characters.
I would like to convert entered characters to uppercase while typing. Please take a look to the following snippet

http://webix.com/snippet/c0d5752c

This is my workaround, is there something better?

            onTimedKeyPress: function() {
                this.setValue(this.getValue().toUpperCase());
            },

yes, that better