SAP UI5 Customized Mobile Keyboard
To customized the mobile keyboard with submit button to trigger the Input control event, add the below code to your onInit function.
Var oInput = this,getView().byId("YourId");
oInput.addEventDelegate({
onAfterRendering:function(){
this.getDomRef("inner").setAttribute("enterkeyhint", "enter");
}.bind(oInput)
});
For more detail explanation. Please go through the link below
Comments
Post a Comment