Show Family in the determination form

Hi @sorosoro,

Currently, there is no way to display a specific rank’s data on the form. As you mentioned, you can show the parent of the current taxon, but you can also show that taxon’s parent, and so on. See the example below on the Determination form:

<row>
  <cell type="label" label="Parent of Taxon"/>
  <cell type="field" id="parent" name="taxon.parent" uitype="text"/>
  <cell type="label" label="Parent of Parent Taxon"/>
  <cell type="field" id="parentOfParent" name="taxon.parent.parent" uitype="text"/>
  <cell type="label" label="Parent of Parent of Parent Taxon"/>
  <cell type="field" id="parentOfParent" name="taxon.parent.parent.parent" uitype="text"/>
</row>

Would a solution like this work in your case?