Import

BALKAN FamilyTree JS supports importing from XML and JSON files:

XML

 
    
    menu: {
        importXML: { 
            text: "Import XML",
            icon: FamilyTree.icon.xml(24,24, '#7A7A7A'),
            onClick: function(){ family.importXML(); }
            }
    },
    

JSON

 
    
      menu: {
          importXML: { 
              text: "Import XML",
              icon: FamilyTree.icon.xml(24,24, '#7A7A7A'),
              onClick: function(){ family.importXML(); }
          },
      },
    

This is a demo for importing. (You could export, edit the file and then import it agian.)