udos86/ng-dynamic-forms

ControlTooltip and labelToiltip are useless

Opened this issue · 0 comments

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.