Closed HolyOne closed 10 months ago
Here is how to hive the link:
var family = new FamilyTree(document.getElementById("tree"), {
editForm: {
generateElementsFromFields: false,
elements: [
{ type: 'textbox', label: 'Full Name', binding: 'Name'},
{ type: 'date', label: 'Birth Date', binding: 'birthDate' }
]
}
});
Here is the doc page: https://balkan.app/FamilyTreeJS/Docs/Edit#configure
I have some family data and I have images. The properties bar shows image urls. I cannot hide them. (The labels dont have proper Id/classnames so I couldnt hide)
Also Additionaly I want to place extra controls/html on top of properties dialog to show extra info but the component should support this.
Maybe if there was an event when the properties dialog opens, I could inject my own controls.