|
Public isMobileDevice : boolean = /Android|Windows Phone|webOS/i.test(navigator.userAgent);
this.container.documentChange = () => {
if (isMobileDevice) {
setTimeout(() => {
this.container.documentEditor.fitPage("FitPageWidth");
this.titleBar.updateDocumentTitle();
this.container.documentEditor.focusIn();
}, 50);
}
else {
this.titleBar.updateDocumentTitle();
this.container.documentEditor.focusIn();
}
}
|
|
Public isMobileDevice : boolean = /Android|Windows Phone|webOS/i.test(navigator.userAgent);
this.container.documentChange = () => {
if (isMobileDevice {
this.container.documentEditor.isReadOnly = true;
setTimeout(() => {
this.container.documentEditor.fitPage("FitPageWidth");
}, 50);
}
else {
this.container.documentEditor.isReadOnly = false;
this.titleBar.updateDocumentTitle();
this.container.documentEditor.focusIn();
}
}
|
Hello,
Is it possible to hide the keyboard permanently in mobile / readonly mode?
Regards
Hello,
There is no problem with the read only mode. But when we touch the screen the soft keyboard is appearing. Is there a way to hide the keyboard completely?
Regards
Hello,
Sorry I didn't understand from your previous post. Thank you.
Regards