Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
How do I add on change event to Multiselect and calling AngularJS function? Thanks.
$scope.typeOptions = { placeholder: "All Types", dataTextField: "Name", dataValueField: "ID", valuePrimitive: true, autoBind: false, dataSource: { transport: { read: { url: "api/facilitytype", } } } };
$scope.typeOptions = {
change:
function
() {
$scope.$apply(
//call $scope function or update a field
});
},
placeholder:
"All Types"
,
dataTextField:
"Name"
dataValueField:
"ID"
valuePrimitive:
true
autoBind:
false
dataSource: {
transport: {
read: {
url:
"api/facilitytype"
}
};