@jrhopkins83 Hi, I have the same problem. Did you solve? Thanks.
Latest posts made by nulele
-
RE: Use firebase-messaging-sw.js file in quasar 1.5.8
-
RE: Google autocomplete places with q-input
For anybody has trouble showing the dropdown list on cordova app, the problem for me was the css. I solved with this instruction:
.pac-container {
z-index: 9999 !important;
} -
RE: google places autocomplete w/Q-input
For anybody has trouble showing the dropdown list on cordova app, the problem for me was the css. I solved with this instruction:
.pac-container {
z-index: 9999 !important;
} -
RE: Google Places Autocomplete using Q-Input not working but works with Input
For anybody has trouble showing the dropdown list on cordova app, the problem for me was the css. I solved with this instruction:
.pac-container {
z-index: 9999 !important;
} -
RE: Google auto populate address without map
For anybody has trouble showing the dropdown list on cordova app, the problem for me was the css. I solved with this instruction:
.pac-container {
z-index: 9999 !important;
} -
RE: Don't know how to truncate a string inside a nested div
Hi, I have the exact same problem now… did you find a solution?
EDIT: try to add “fit” just where you defined the “ellipsis” class. It worked for me!
-
RE: Closing a q-dialog with a lot of content is very very slow
I tried to move the content in a page rather than in a q-dialog but I still have performance problem.
When I click the back button (basically a $router.push() to the list page) it takes several seconds before the page changes.
I can’t understand if my problem is related to Quasar or Vue… maybe they are not suitable for such amount of content?
-
Closing a q-dialog with a lot of content is very very slow
Hello,
I have a q-dialog component with a custom component as content.
<q-dialog full-height full-width persistent v-model="showEditDialog"> <q-card class="full-height full-width"> <q-card-section class="row"> <div class="text-h6">Edit</div> <q-space /> <q-btn icon="close" flat round dense v-close-popup /> </q-card-section> <q-separator /> <q-card-section style="height:calc(100% - 120px)" class="scroll"> <CustomComponent ...></CustomComponent> </q-card-section> <q-separator /> <q-card-actions align="right"> <q-btn label="Save" color="positive" @click="save()" /> </q-card-actions> </q-card> </q-dialog>
This custom component is a huge form to create a survey with a lot of questions and every question has many other input fields alongside with answers of course.
The dialog close button has the v-close-popup property. When I close the dialog it takes about 10 seconds before it to disappear.
I guess the problem is the amount of content… what I could try to speed up the closing of the dialog before moving my custom component in a page rather than in a q-dialog?
Thanks
-
q-table column sorting go back to first page
Hello,
is it the expected behaviour that q-table column sorting go back to the first page when in second page or more?
If so, any chance to make it sorting in the current page?
Thanks
-
RE: Prevent q-select for showing Android's keyboard
Yeah, I confirm! Very annoying!
@sibylle did you find a solution?