ng-repeat
withを使用してチェックボックスを作成する JSON オブジェクトがありますorderBy: 'name'
。
<div ng-controller="Ctrl">
<ul>
<li ng-repeat="fruit in fruits | orderBy:'name'">
<label>
<input type="checkbox" name="{{fruit.name}}" id="{{fruit.name}}">
{{fruit.name}}
</label>
</li>
<ul>
</div>
ここで、アイテムを最初に「チェック済み」で並べ替え、次にアルファベット順に並べ替えたいと思います。
ここにフィドルがあります:http://jsfiddle.net/DqfTw/67/