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

Popular posts from this blog

SAP UI5 Date Picker With Min and Max dates