Open wahono77 opened 8 years ago
In readonly mode input, virtual keyboard still show and the value can change by user.
I try add filter condition to prevent show keyboard in readonly mode and it's work.
self.attachVki = function(elem) { if (elem.getAttribute("VKI_attached") || elem.readOnly) return false; ....
this.VKI_show = function(elem) { if(elem.readOnly) return false; ....
I hope this bug should be fixed in next version
thanks
In readonly mode input, virtual keyboard still show and the value can change by user.
I try add filter condition to prevent show keyboard in readonly mode and it's work.
self.attachVki = function(elem) { if (elem.getAttribute("VKI_attached") || elem.readOnly) return false; ....
this.VKI_show = function(elem) { if(elem.readOnly) return false; ....
I hope this bug should be fixed in next version
thanks