Request new features or modifications


Post by vadim_g »

Hi guys,

could we have please quick tooltips like in ExtJs ? https://docs.sencha.com/extjs/7.7.0/modern/Ext.tip.Manager.html

We use them a lot, as they are very in handy and does not require any additional code, just simply adding data-qtip attributes in any template element.

Thanks.
Vadim


Post by tasnim »

Hi Vadim,

Yes — we support that. You can use the built‑in data attribute or methods:

  • Simple attribute on any element:
     <button data-btip="Quick tip">Hover</button>
    (see Tooltip).
  • Programmatically attach a tip:
    Widget.attachTooltip(el, { text : 'Quick tip' });
    (see Widget.attachTooltip).
    You can also destroy/check attached tips with Widget.destroyTooltipAttached / hasTooltipAttached.

Best regards,
Tasnim

How to ask for help? Please read our Support Policy


Post by vadim_g »

Fantastic , data-btip works

Thank you.


Post Reply