Get well soon Razvan!
Best posts made by Stanley
-
RE: [Solved] Trigger autocomplete without submitting a form
@dobbel yes, that’s true. There are some disadvantages about iframe, but I have no other better choice.
In addition, I found Quasar can provide autocomplete, but it’s not complete.
Please see my demo. https://codepen.io/Stanley-549393092/pen/oNzRXde
Here, it uses vue modify @submit.prevent so that submit event will no longer reload the page.
Step1. Input name and click button ‘submit’ (or press enter), you can find the value in the autocomplete list.
Step2. If you change the name and submit again, you can’t find the value.
Step3. If you refresh the browser and submit again, now you can see it.
It seems Q-Input can only remember the name when the first time.Anyway, I hope it can be improved in future.
From the point of technical view, I think it can be implemented by E.g. LocalStorage if we want to deprecate iframe. -
RE: [Solved] DataTable display a column with icon
@hawkeye64 Thank you! It works now.
-
RE: [Solved] [V1] QInput property "upper-case" is missing
@metalsadman Thanks for your help!
-
RE: [Solved] [V1] QInput - lazy modify does not take effect
@metalsadman Thanks a lot for your help!
Finally I understood the meaning of native input.
And thanks for rectify my syntax because I am still using the syntax in v0.17.x. -
RE: [Solved] UI Component for code editor
@Hawkeye64 Thanks! That’s what I want.
-
RE: [Solved] UI Component for code editor
Finally, I got the purpose. Thank you!
Latest posts made by Stanley
-
RE: [Solved] QTable: How to catch the selected event of the top checkbox
@dobbel Thanks for the hint. Now I found the example.
-
[Solved] QTable: How to catch the selected event of the top checkbox
Dear Quasar team,
I did a demo to illustrate my issue, could you please have a look?
https://codepen.io/Stanley-549393092/pen/ZEBozmo?editors=1011
As you can see, I can catch the selected event of checkbox in each line. However, how can I catch the top one (multiple select)?Regards
-
RE: How to use CopyWebPackPlugin in Quasar
@suleiman_as It’s great, it works, thank you very much! Now I search the key word “distDir” in quasar, I can find the documentation.
-
RE: How to use CopyWebPackPlugin in Quasar
Actually I have the same requirement and I also did it manually as the author did. (copy all the files under folder \dist\spa, go to the target folder, delete all files, then paste the files).
I just check the build log. as you can seeApp · Reading quasar.conf.js App · Transpiling JS (Babel active) App · Extending SPA Webpack config App · Cleaned build artifact: "C:\Work\myquasarproject\dist\spa" App · Generating Webpack entry point App · Compiling with Webpack...
I am not sure where to change the build artifact path.
-
Is there a dense plugin which can set dense globally?
Dear Quasar team,
As I can see there is the dark plugin that can set dark mode globally.
So is there the plugin that can set dense globally?
If not, what is the recommended way to do it? Thank you! -
RE: [Solved] QInput How to adjust the top/bottom padding if it is without a label
@metalsadman Thanks! I tried that but failed. Shall I focus on the class ‘q-field__control-container’ or ‘q-field__native’?
-
RE: [Solved] QInput How to adjust the top/bottom padding if it is without a label
@s-molinari yes, the demo is based on dense property.
-
[Solved] QInput How to adjust the top/bottom padding if it is without a label
Dear Quasar team,
I did a demo to illustrate this requirement, could you please have a look?
https://codepen.io/Stanley-549393092/pen/QWGgYPy?editors=1010I would like to narrow the top/bottom padding (that means the height of q-input will be narrowed), because it occupies some space.
I tried to use custom style to override the default setting, but failed.
Do you have some idea? Thanks for your help!