- var items = []
- items.push({id: 'array-numbers', text: 'Array of numbers', ctrlName: 'NumbersCtrl', testValue: 'user.numbers'})
- items.push({id: 'array-simple', text: 'Array of primitives', ctrlName: 'Ctrl1', testValue: 'user.roles'})
- items.push({id: 'array-id', text: 'Array of objects (pick id)', ctrlName: 'Ctrl2', testValue: 'user.roles'})
- items.push({id: 'array-object', text: 'Array of objects (pick object)', ctrlName: 'Ctrl3', testValue: 'user.roles'})
- items.push({id: 'array-dynamic', text: 'Array of objects (dynamic values)', ctrlName: 'Ctrl9', testValue: 'user.roles'})
- items.push({id: 'single-object', text: 'Array of only one object', ctrlName: 'Ctrl7', testValue: 'user.roles'})
- items.push({id: 'object', text: 'Object properties', ctrlName: 'Ctrl4', testValue: 'user.roles'})
- items.push({id: 'object-static-list', text: 'Static list of objects (without ng-repeat)', ctrlName: 'Ctrl4a', testValue: 'user.roles'})
- items.push({id: 'function-as-model', text: 'Use a function as checklist-model', ctrlName: 'Ctrl8', testValue: 'getRoles()'})
- items.push({id: 'array-object-with-ngmodel', text: 'Array of object, specifying also the ngModel attribute', ctrlName: 'Ctrl3a', testValue: 'user.roles'})
- items.push({id: 'filter', text: 'Comparator', ctrlName: 'Ctrl6', testValue: 'selectedUsers'})
- items.push({id: 'comparator-expression', text: 'Comparator expression', ctrlName: 'Ctrl6a', testValue: 'selectedUsers'})
- items.push({id: 'event', text: 'Event', ctrlName: 'Ctrl5', testValue: 'testValue'})