udos86 / ng-dynamic-forms

Rapid form development library for Angular
ISC License
1.32k stars 369 forks source link

ControlTooltip and labelToiltip are useless #1169

Open CaMoCBaJL opened 1 year ago

CaMoCBaJL commented 1 year ago

I'm submitting a


[X] Bug / Regression
[ ] Feature Request / Proposal

I'm using


NG Dynamic Forms Version: `13.0.0`

[ ] Basic UI
[ ] Bootstrap UI  
[ ] Foundation UI
[ ] Ionic UI
[ ] Kendo UI
[ ] Material  
[ ] NG Bootstrap
[ ] Prime NG
[X] Core

Description

I faced with problems of adding tooltips to dynamically generated labels. DynamicFormControlModel, base model class for each component model has tooltip props, but are useless for me - neither control neither label tooltip doesn't work for my custom components. Model code for custom element listed below: new EfDynamicSelectModel({ id: '13,1', labelTooltip: "Some tooltip", controlTooltip: "Some control tooltip", label: "Element label example", options: [ //smthng ], multiple: true, }),

Which event should trigger label to appear? Click and hover events didn't gave the expected result.