Giter Club home page Giter Club logo

Comments (7)

wotamann avatar wotamann commented on July 21, 2024

Tooltip added, see in example Section 'Simple' or 'CSS'

Use Text:

schema: { name: { type: 'text', tooltip: 'My Tooltip Text' }, ... }

or use Slot:

schema: { name: { type: 'text', tooltip: true }, ... }

HTML
 <!-- TOOLTIP SLOT -->
 <div slot="slot-tooltip" slot-scope="slotProps">
    {{ slotProps.obj.schema.tooltip }} has value '{{ slotProps.obj.value }}'
 </div>
 <!-- TOOLTIP SLOT - new Syntax VUE 2.6.0 -->
 <template v-slot:slot-tooltip="slotProps">
      {{ slotProps.obj.schema.tooltip }} with Value: {{ slotProps.obj.value }}
 </template> 

STYLE
  .v-tooltip__content { background-color: #F66; }

from vuetify-form-base.

wotamann avatar wotamann commented on July 21, 2024

also possible to control color and position of tooltip

schema: { name: { type: 'text', tooltip: { color: 'green', label: 'File Selection', left: true }, ... }

from vuetify-form-base.

Rambone avatar Rambone commented on July 21, 2024

Hi, thank you for your efforts. This is going in exactly the direction I had in mind. Is it possible to have the tooltip activator not on the v-flex element but rather on the prepenIcon/apendIcon or button? That would certainly be easier for the user to understand.
TIA

from vuetify-form-base.

Rambone avatar Rambone commented on July 21, 2024

Addendum: the best position for the icon with activator would be at the example of the v-textfield the append-outer-slot or at the v-checkbox/radio/switch the append-slot.

from vuetify-form-base.

wotamann avatar wotamann commented on July 21, 2024

Tooltip on button works!

btn1: { type: 'btn', tooltip: 'Button' }

I have been looking for but apparently vuetify 2.0 doesn't support binding v-tooltip to prepend-inner-icon

//   does not work !!!!
<v-tooltip left slot="prepend-inner">
        <template v-slot:activator="{ on }" >        
               <v-text-field v-on="on" prepend-inner-icon="add" >                      
               </v-text-field>
        </template>      
        <span>Left tooltip</span>     
</v-tooltip>

Maybe someone has an idea or someone can help !

from vuetify-form-base.

Rambone avatar Rambone commented on July 21, 2024

Hello, it works if the tooltip does not act as a wrapper of the field. Had solved it with an SFC at first, but I thought it completely twisted the logic of your work. Works also with "prepend-inner".

<v-text-field> <v-tooltip slot="append-outer"> <template v-slot:activator="{on}"> <v-icon @... v-on="on"> Tooltip icon </v-icon> </template> <span>Tooltip content</span> </v-tooltip> </v-text-field>

from vuetify-form-base.

wotamann avatar wotamann commented on July 21, 2024

THX for your comment and yes, you're absolutely right: This change would twist structure and logic of vuetify-formabse

from vuetify-form-base.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.