Hi below code is use for checkbox
- class="col-md-6 col-sm-6 col-xs-12">
- "checkbox" ng-model="VendorsObject.MISC" />

when i click on vendorName my check box vlaue should append to checkbox field as how below:

Here is the code which i use in my controller :
- var data = RMSService.getvendorsById($stateParams.id, globalValues.token).then(function (response) {
- $scope.VendorsObject = response.data;
- }, function (error) {
- console.log(error);
- })

Mukesh NayakPosted Nov 22, 2017, 3:47 AM