i'm new ionic framework , want know whether can create pop window checkbox list in it? example when user click on button pop window come out list of things select.
here documentation $ionicpopup:
http://ionicframework.com/docs/api/service/$ionicpopup/
for $scope.showpopup
function there specified template, define html checkbox.
e.g.
template: '<ion-checkbox ng-model="ischecked.bike">checkbox label</ion-checkbox>'
you have scope object bound checkbox.
$scope.ischecked = { bike: false }
ionic checkboxes: http://ionicframework.com/docs/api/directive/ioncheckbox/
angular checkbox: https://docs.angularjs.org/api/ng/input/input%5bcheckbox%5d
Comments
Post a Comment