How to custom array field with table template in autoform?

I have array field like this in schema:

contact: {
        label: "Contact",
        type: Array
    },
    'contact.$': {
        type: Object
    },
    'contact.$.address': {
        type: String
    },
    'contact.$.phone': {
        type: String
    }

The result in table style


Address | Phone | Action

########## | ########### | -

########## | ########### | -

########## | ########### | -

                                                      +
please help me to custom template.

http://autoform.meteor.com/quickform -> Array of object fields

1 Like

This demo don’t show how to custom.

1 Like