Angularjs:Datepicker不能用于ng-repeat

时间:2017-05-01 12:00:59

标签: javascript jquery angularjs datepicker

我正在为我的项目使用一个模板,它提供了一个名为 input-datepicker 的类,通过在input元素上应用此类名,datepicker的弹出窗口打开。

当我在ng-repeat中使用相同的类时,它不起作用。你对这个问题有什么建议? 我也使用了指令

if(!isset($CI->session)):
    $CI->load->library('session');
endif;

注意:我应用类的输入字段是模态内部。 在Html COde下面:

var app=angular.module('module', []).directive("datepicker", function () {
 function link(scope, element, attrs) {
    // CALL THE "datepicker()" METHOD USING THE "element" OBJECT.
    element.datepicker({
        // dateFormat: "dd/mm/yy"
    });
 }
 return {
    require: 'ngModel',
    link: link
 };
})

0 个答案:

没有答案