I have a string contained in a member to modify and bind to the title attribute of a label. i want to modify the string member using angular Filter. The modification will be based on a object that should be passed to the filter function.
help with the syntax.
Thanks in advance.
Here is the code i have tried
label class="membername" title={{member.name}}
$scope.dalTitleFilter = function (member) {
return function (value) {
};
};