Found the solution for controlling Backspace key issue. Here is the code for same.
window.addEventListener("keydown", function(e){
if(e.keyCode == 8 && document.activeElement.value == undefined)
{
e.preventDefault();
}
});
Note: Add it inside init()
Regards,
Mahendran