A key value-pair map where the key is the name of a field in a data row and the value is the definition for the template used to render a filter cell in the header of a html table. Where the value is supplied as a string this should either be url to a html template or an alias to a url registered using the {@link ngTableFilterConfigProvider}
Generated using TypeDoc
A key value-pair map where the key is the name of a field in a data row and the value is the definition for the template used to render a filter cell in the header of a html table. Where the value is supplied as a string this should either be url to a html template or an alias to a url registered using the {@link ngTableFilterConfigProvider}
vm.ageFilter = { "age": "number" }
vm.ageFilter = { "age": "my/custom/ageTemplate.html" }
vm.ageFilter = { "age": { id: "number", placeholder: "Age of person"} }