Hi Laxman,
You can also use the following javascript to disable double click of autocomplete input.
Just place following script in your Webscreen Javascript properties as shown in screenshot
document.addEventListener( 'dblclick', function(event) {
event.preventDefault();
event.stopPropagation();
}, true
);

Hope it works, Thanks :)