SapUI5- Backspace无法处理输入标记

时间:2014-09-18 04:17:37

标签: sapui5

我有一个输入标签,类型为" Text"我希望用户只能以大写形式输入,因此我使用liveChange事件。它在浏览器中工作正常,但出于某种原因,当我在手机上运行时,键盘上的退格键无效。无法理解原因。

<Input liveChange="handleChange" id="userName" type="Text" />
//Function  
handleChange : function(){
  var userName=this.getView().byId("userName").getValue();
  userName=userName.toUpperCase();
  this.getView().byId("userName").setValue(userName);
}

请帮忙。感谢

0 个答案:

没有答案