Hello,
I created a dashboard which works totally fine on PC, but when using a tablet or smartphone at almost every task the keyboard pops up. I’m also using a datatable with filter, so I would want to keep the keyboard popup for that case, but for the dropdowns and daterangepicker I don’t need the keyboard.
The first approach was with using CSS:
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
… but that unfortunately didn’t work.
Is there a way to disable the keyboard for specific dash elements?
Thanks,
Felix