I want to create few directives for grid view.
Finally it should looks like:
<grid-table columns="table.columns">
<grid-table-header></grid-table-header>
<grid-table-filters></grid-table-filters>
<grid-table-content rows="users"></grid-table-content>
</grid-table>
So - here is one main directive - table and another, optional directives for table header(columns names), filters(searching in table), table content.
And... in main directive(table) I have "columns" field - because I want to give informations about columns and want to use this data in child directives(header, filters, content).
Is it possible?