
Best posts made by spyke113
Latest posts made by spyke113
-
QTree Behavior
Hello, can I get QTree behavior like Vuetify Treeview when I select “Activatable” and “Open on any item click” at the same time?
https://vuetifyjs.com/en/components/treeview#playground -
RE: [v1-beta] QTree expand non-selectable node on header click
@rstoenescu Any comments please?
-
RE: [v1-beta] QImg Lazy Load
@Cego Yes, thanks, I saw it, but I already found the
ScrollFire
directive.
https://v1.quasar-framework.org/vue-directives/scroll-fire -
[v1-beta] QImg Lazy Load
Hi all! Advise me the best way to lazy load images via
QImg
(based onIntersection Observer API
). I didn’t find this prop in component documentation. -
RE: [Solved] [v1-beta] QTab Close Button
Solution:
QTab
hadno-pointer-events
class, just addall-pointer-events
to a element inside theQTab
who needs be clickable.
Many thanks to @Tobias-Mesquita andkhuguet
on Discord channel! -
RE: [v1-beta] QTree expand non-selectable node on header click
@rstoenescu Or maybe to do something like
select-strategy
orexpand-strategy
(i don’t even know what is more appropriate here)? A setting that allows expandable nodes to be one of (we are talking only about a click on the header):- to be expanded regardless of whether it is selectable or not
- to be expanded only when the node itself is not selectable, regardless of whether QTree has
selected
prop or not (such behavior will be at the code offered by me in the first message) - revealed only when QTree is not selected (as it is now)
-
RE: [v1-beta] QTree expand non-selectable node on header click
@rstoenescu Thanks for the answer. Link to the example is at the end of the first message (Try to expand node by clicking on the header). Nodes that have children by default are expandable. Expanding such nodes is possible by clicking not only on arrow icon, but also on header (behavior #1). If such node is selectable, then its behavior changes, and now expanding of such node is available only by arrow icon. But if node is not selectable (while QTree is) and have children, then why not leave same behavior as behavior #1?
-
RE: [v1-beta] QTree expand non-selectable node on header click
@rstoenescu Should I create PR?