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.
I'm submitting a
I'm using
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.