Still problems on mobile

Hi all,
this code excerpt works well on web browser but not on mobile cordova app. The maxlength attribute does not apply, it seems that smartphone return a strange 229 code every time I tap on soft keyboard. Any help?

Thank you

P.S. my all proto.ui widgets which use onKeyPress envet do not work anymore, is it sure webix handle softkeyborad events as expected?

The theory is that Android’s virtual keyboard intercepts keypress event and injects a text prediction by mutating the keyEvent object. In this mutation the keyCode property is lost and therefore the browser defaults to 229.
And we have that the equivalent for the keyCode 229 is an å.

Why is Webix unaware of this in onKeypress event?

                  view: "combo",
                  name: "provincia",
                  label: "Prov.",
                  width: 75,
                  options: {
                    body: {
                      yCount: "3"
                    }
                  },
                  required: true,
                  labelPosition: "top",
                  value: uinfo.provincia,
                  attributes: {
                    maxlength: 2
                  }
                }

Still no suggestions?