<section ng-app ng-controller="Controller">
<h2 class="page-title">Model</h2>
<div class="row-fluid">
<div class="span4">
<label for="cboGroup">Group</label>
<select data-ng-model="currentGroup" data-ng-options="group as group.Name for group in groups"></select>
</div>
<div class="span4">
<label for="cboItem">Items</label>
<select data-ng-model="currentItem" data-ng-options="item as item.Name for item in currentGroup.Items"></select>
</div>
<div class="well">
what I am trying to archive is that the items are changing each time the group changes.
</div>
<div>
Group : {{currentGroup | json}}
</div>
<div>
Item : {{currentItem | json}}
</div>
</div>
</section>