An object oriented picklist with filtering for angular
- angular-flex-picklist zero and higher requires Angular 1.4.x or higher and it has been tested with Angular 1.4.7.
- angular-flex-picklist zero and higher requires Bootstrap CSS version 3.x or higher
- angular-flex-picklist zero and higher requires ng-simplePagination version 1 or higher
When you are done downloading all the dependencies and project files the only remaining part is to add dependencies on the angularflexPicklist
AngularJS module:
angular.module('yourModule', ['angularflexPicklist']);
app.controller('AppController', function($scope){
$scope.itemsSource = [
{
id: 1,
title: "Item 1",
description: "Item 1 Description"
},
{
id: 2,
title: "Item 2",
description: "Item 2 Description"
},
{
id: 3,
title: "Item 3",
description: "Item 3 Description"
}
];
$scope.itemsTarget = [];
});
Basic options
<flex-picklist target="itemsTarget" source="itemsSource"></flex-picklist>
Extended Options
<flex-picklist search-place-holder="Search"
target="itemsTarget"
source="itemsSource"
show-move-all="true"
show-delete-button="true">
</flex-picklist>