$scope.ifyes=false;
};
+ $scope.send_date ="10/4/2004";
});
});
+ crmMailingAB.directive('datepick',function(){
+
+ return {
+ scope :{
+ foo : '=send_date'
+ },
+
+
+ restrict: 'AE',
+
+
+ link: function(scope,element,attrs){
+
+ $(element).datepicker({
+ onSelect: function(date) {
+ $(".ui-datepicker a").removeAttr("href");
+ scope.foo =date;
+ console.log(date);
+ }
+ });
+ }
+ };
+
+
+ });
+
<input type="radio" name="Start" ng-model="start" value="now"> Now  
<input type="radio" name="Start" ng-model="start" value="later"> Later
-     <input type="date" ng-show="start=='later'" ng-model="send_date">
+     <input type="date" ng-show="start=='later'" ng-model="send_date" datepick>
</div>
+
+
<br><br>
<button id="campaignbutton" nexttab={{adi}} >Submit & Send</button> <br>