In my plugin blueprint I have 3 fields - 2 of them are list type (plans and features) and the 3rd one is completely custom (table). When the form is rendered on the admin page, I can clearly see the input name attributes are correct on my custom field and matches the list fields
data[header][plancompare][plans][0][text]
data[header][plancompare][plans][1][text]
data[header][plancompare][features][0][text]
data[header][plancompare][features][1][text]
data[header][plancompare][table][slug1|slug2][text]
data[header][plancompare][table][slug1|slug3][text]
But when saving, data[header][plancompare][table] branch is never submitted. Or at least in onAdminSave() I get only plans and features, but table doesn't even exist.
Custom field blueprint:
https://github.com/Karmalakas/grav-plugin-plan-compare/blob/init/blueprints/plan-compare.yaml
Custom field HTML:
https://github.com/Karmalakas/grav-plugin-plan-compare/blob/init/templates/forms/fields/plancompare/plancompare.html.twig
Again can't find what's missing 😦
