Hi,
I am knocking my head trying to understand
1) why the window opens automatically?
2) Why the window doesn’t respect the width and height given to it”
The window’s title and content is appearing OK.
Please see my code below.
<template>
<JqxWindow ref="window"
:autoOpen="false"
:width="500" :height="400"
>
<div>
Hello World
</div>
<div>
<div>Why this window opens automatically?</div>
<div>Why this window doesn't respect the width and height given to it"</div>
</div>
</JqxWindow>
</template>
<script>
import JqxWindow from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxwindow.vue';
export default {
components: {
JqxWindow
}
}
</script>