I found that the max width for Qdialog is 600px , is it true? how to make it bigger?
Posts made by zhanggx
-
RE: how to adjust height and width of dialog created by this.$q.dialog()?
-
RE: how to adjust height and width of dialog created by this.$q.dialog()?
thanks for your help, however, i am using the qdialog to invoke a vue custom component . then it seems that the qdialog is not big enough to hold the vue component. this cause the component not show fully. any idea to set size of Qdialog on this case?
-
how to adjust height and width of dialog created by this.$q.dialog()?
this.$q
.dialog({
component: IndexDetail,
parent: this,
// props forwarded to component
// (everything except “component” and “parent” props above):
text: “something”,
title: “curve”
// …more.props…
})
.onOk(() => {
console.log(“OK”);
})
.onCancel(() => {
console.log(“Cancel”);
})
.onDismiss(() => {
console.log(“Called on OK or Cancel”);
});
},I popup a dialog as above , the dialog contains a vue component which is used to show a curve. but it seems that qdialog is small, how to adust the height and width of this dialog? thanks.
-
flowing code , with q-btn inside a tempalte , it seems that submit function not fired?
flowing code , with q-btn inside a tempalte , it seems that submit function not fired?
<q-form @submit=“sendMessage” class=“full-width”>
<q-input v-model=“newMessage” label=“Label” counter maxlength=“12” dense>
<template v-slot:after>
<q-btn round dense flat icon=“send” type=“submit” />
</template>
</q-input>
</q-form> -
RE: android issue
I am using android version 4.2.2 the android sdk is newest one
in the terminal it said success loaded, and i can see that the app is loaded into the handphone connected with USB
but app runs a blank screen