These are the demos for the mselect directive. Same can be found in test.html in the code
Assume our $scope has the following variables
$scope.iterable_1 = [1, 2, 3, 4, 5];
$scope.iterable_2 = [
{display: 'apple', value: 'A'},
{display: 'banana', value: 'B'},
{display: 'cherry', value: 'C'},
{display: 'date', value: 'D'}
]
Demo 1: simple array
All you need to use the directive is an array and a model to which you want the selected value assigned
<m-select m-repeat="iterable_1" m-model="model_1">
</m-select>
will render as
Demo 2: Array of objects
You can use a m-item statement inside the m-select statement to specify how each of the items should be rendered. Use the variable $item to refer to the array item
<m-select m-repeat="iterable_2" m-model="model_2">
<m-item>
<span style="color:red;" ng-bind="$item.display"></span>
</m-item>
</m-select>
will render as
Demo 3: Array of objects. Assign an attribute of the array item to model
Use the attribute m-value on the m-select statement
<m-select m-repeat="iterable_2" m-model="model_3" m-value="$item.value">
<m-item><span style="color:green;" ng-bind="$item.display"></span></m-item>
</m-select>
will render as
Demo 4: Callback
If you want a callback for the controller
Assume this is the callback you want to execute:
$scope.callback_4 = function(value){
alert(value.display + ' selected')
}
You can use the m-onselect-callback to execute the callback. The callback can just be a statement. $item can be used to refer to the value selected
<m-select m-repeat="iterable_2" m-model="model_4" m-onselect-callback="callback_4($item)">
<m-item><span style="color:pink;" ng-bind="$item.display"></span></m-item>
</m-select>
Will render as
More demos
click here for more undocumented demos. Viewing page source should tell you how stuff works!