Open mrjohnr opened 7 years ago
Hi @mrjohnr!
As I mentioned before, I'm not much help when it comes to Angular, but by default keyboard positioning is done by jQuery UI's position utility (optional) which I can't tell if it's loaded.
You can also position the keyboard using CSS. Check out the basic light and dark demos and the first demo under the Layout section on the main wiki page.
Hi.I've not loaded nothing from jQuery UI thanks
including keyboard.min.css in _Layout.cshtml makes the keyboard working (in first post when I press a key it closes) .but the position is now in left top corner.Not able to center it with the code
position: {
of: $(window),
my: 'left top',
at: 'left+200 top+50',
at2: 'center center'
}
flowing this,I think the problem is including jQuery-ui ...I've tried to put in webpack.config.vendor.js
const nonTreeShakableModules = [
'bootstrap',
'bootstrap/dist/css/bootstrap.css',
'es6-promise',
'es6-shim',
'event-source-polyfill',
'jquery',
'jquery-ui'
];
but not working
found also this but not helped me too much
Hi. I'm using the keyboard with Angular 4 + webpack and the keyboard is shown left down corner. https://imgur.com/VXfzPDC If I pres only one key then it autocolse:
called this way:
thanks for any help