[Solved] Angular show list in alphabetical order and also show divider
You have to filter each group by the letters you want. Here’s a Plunker Using this list: $scope.myList = [{ id: 11, name: ‘Okra’ }, { id: 12, name: ‘Musa’ }, { id: 4, name: ‘Sky’ }, { id: 13, name: ‘India’ }, { id: 14, name: ‘Rose’ }, { id: 15, name: ‘Titanic’ }, … Read more