How to make filter with select in angular way if values of select from the 
different scope?

My code:

*JS*

$rootScope.isPublicScope = [
    {
        status: 0,
        name  : 'Not published'
    },
    {
        status: 1,
        name  : 'Published'
    },
    {
        status: 2,
        name  : 'Deleted'
    }]

*HTML*

<tr>
    <select ng-model="status"
            ng-options="isPublic.status for isPublic in isPublicScope">
        <option value="">Status</option>
    </select></tr><tr ng-repeat="category in categories | filter:status">
    <td>{{category.name}}</td>
    ...</tr>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to