2016-12-15 2 views
0

날짜 선택 도구에서 날짜를 마우스로 클릭 (선택)하고 있습니다. 함수를 호출하고 싶습니다. 각도 js에서 할 수 ... 누군가 나를 도울 수 있습니다.html로 날짜를 클릭 할 때 함수를 호출하는 방법 5 datepicker 입력 유형

HTML :

<div class="col-lg-4"> 
<input class="form-control" type="datetime" date-time auto-close="true" view="date" 
    min-view="date" format="dd/MM/yyyy" ng-model="$root.Details.date" value = "{{dob}}"> 
</div> 

JS 날짜의 선택에 따라서

class CreateCustomerCtrl { 
constructor($scope,$rootScope,$http,$state,$reactive,$timeout,Notification) 
{ 

//logic here 
} 
export default angular.module('createCustomer', [ 
angularMeteor 
]) 
.component('newCustomer', { 
templateUrl: 'client/customer/new-customer.html', 
controller:['$scope','$rootScope','$http','$state','$reactive','$timeout','Notification' 
,customerCtrl]}); 

나는 함수를 호출하고 싶습니다. 감사 enter image description here

답변

0

당신은 값을 바인딩 ng-model="myDate"과 입력에 ng-change="yourFunc()" 이벤트를 사용할 수 있으며, 함수 내에서 당신이 당신의 논리를 넣을 수 있습니다.

+0

시도했지만 작동하지 않았습니다. 함수가 호출되지 않습니다. –

+0

$ scope.yourFunc = function() { } 시도해 보셨습니까? –

+0

죄송합니다.이 함수를 사용하지 않아 죄송합니다. 함수가 호출되지 않습니다. –