Refer this How to: SAPUI5 User Input Validations
Example :
var oname =new sap.ui.commons.TextField({
id:'input2',
change :function(){
if(this.getValue()=='')
alert("enter some value");
}
});
Refer this API
Refer this How to: SAPUI5 User Input Validations
Example :
var oname =new sap.ui.commons.TextField({
id:'input2',
change :function(){
if(this.getValue()=='')
alert("enter some value");
}
});
Refer this API