Angular UI-Grid - 当自定义指令

时间:2016-03-04 07:55:22

标签: javascript angularjs datepicker angular-ui-grid

我使用AngularJS 1.5.0和UI-Grid 3.1.1开发Web应用程序。

我需要有跨浏览器日期选择器的列,所以我决定使用Bootstrap-Datepicker(https://github.com/eternicode/bootstrap-datepicker)。

对于本专栏,我使用customTemplate:

rejestrator.columnTemplates.dayCellEditable =
'<div class="column-day">' +
    '<span ng-model="row.entity.day" ng-change="updateDayCell(row, row.entity.day)" aa-date-input>{{ COL_FIELD | date:"yyyy-MM-dd" }}</span>'+
'</div>';

当我点击日期单元格时,正确调用了datepicker,它甚至用选择的数据更新了行中的单元格,但遗憾的是没有触发函数UpdateDayCell(ng-change),甚至还没有触发gridApi.edit.on.afterCellEdit ... < / p>

我需要向侦听器on.afterCellEdit发出updateDayCell控制器的函数或fire事件,以发送更新我的数据库的请求。

我的网格定义是:

$scope.myTaskGridOptions = {
    exporterMenuCsv: false,
    enableGridMenu: true,
    enableSorting: true,
    enableFiltering: false,
    enableCellEditOnFocus: true,
    columnDefs: [
        {
            name: 'Dzień', 
            field: 'day', 
            width: '130',
            sort: { direction: 'asc', priority: 0 }, 
            type: 'date',
            cellFilter: 'date:\'yyyy-MM-dd\'',
            cellTemplate: rejestrator.columnTemplates.dayCellEditable, 
            enableCellEdit:false
        },
        {
            name: 'Projekt',
            field: 'project_name', 
            editableCellTemplate: 'ui-grid/dropdownEditor',
            width: '15%', 
            editDropdownOptionsFunction : MyTasksProvider.getMyProjects
        },
        { 
          name: 'Opis',  
          field: 'description', 
          width: '50%' 
          },
        {
            name: 'Czas',      
            field: 'used_time' , 
            width: '75', 
            type: 'string',
            cellTemplate: rejestrator.columnTemplates.timeCell,
            enableCellEdit: false
        },
        {
          name: 'Akcje',
          field: 'id',
          enableSorting: false,  
          width: '90', 
           cellTemplate: rejestrator.columnTemplates.actionsCell,
          displayName: '',
          enableColumnMenu:false, 
          enableCellEdit: false
        }
    ],
    //Bind events
    onRegisterApi : function(gridApi){
        $scope.gridApi = gridApi;
        gridApi.edit.on.afterCellEdit($scope,function(rowEntity, colDef, newValue, oldValue){
            if (newValue !== oldValue) {
                var callback = function(){};
                var fieldToChange = colDef.field,
                    valueToSet = newValue;
                if (fieldToChange === 'project_name') {
                    fieldToChange = 'project_id';
                    callback = refreshGrid;
                } else if (fieldToChange == 'day') {
                    valueToSet = $filter('date')(newValue, "yyyy-MM-dd");
                    rowEntity.day = valueToSet;
                }
                CommonTasksProvider.updateTaskFieldByID(rowEntity.id, fieldToChange, valueToSet, callback);
            }
        });
        //gridApi.core.on.filterChange
    },
    //Disable multiselection
    multiSelect: true
};

grid

编辑:

我为活动添加了监视&#39; aa:日历:设置日期&#39;在设置值时由Datepicker触发:

$scope.$on('aa:calendar:set-date', function(event, toState, toParams, fromState, fromParams){
    var dateObj = event.targetScope.$parent.ngModel,
        day = $filter('date')(dateObj, "yyyy-MM-dd"),
        taskId = event.targetScope.$parent.taskId;
    return CommonTasksProvider.updateTaskFieldByID(taskId, 'day', day)
});

它有效。大家好,你认为这是好的解决方案吗?角路?或者表现昂贵?

1 个答案:

答案 0 :(得分:2)

我使用ui.bootstrap.datetimepicker

var dateCellTemplate = 
                            ' <div layout="row" >' +
                            '    <wm-ai-grid-date-picker class="wm-ai-standalone-due-date"' +
                            '        data-ng-model="row.entity.timestamp_due"' +
                            '    ></wm-ai-grid-date-picker>' +
                            '</div>';

这是我的指示,(希望能帮到你):

app.directive('wmAiGridDatePicker', ['$timeout','$parse', function ($timeout, $parse) {
        return {//this datePicker will show the date in the wanted format and save it (ng-model) with the default format of yy-mm-dd
            template: '<input type="text"  style="cursor: pointer;border-color: rgb(239, 239, 239);height: 22px;padding-left: 6px;margin-right: 13px;margin-top: 10px;">',

            replace: true,
            require: 'ngModel',
            scope: {},
            link: function (scope, element, attrs, controller) {

                scope.time = {
                    hours: 0,
                    minutes: 0
                };

                var getModel = function () {
                     return controller.$modelValue;
                };

                var options = {
                   format: "dd/mm/yyyy"
                    ,autoclose: 'true'
                    //,startDate: $filter('date')(new Date().getTime(), 'dd/mm/yyyy')
                    //,startDate: "10/04/2015"
                    ,todayBtn: "linked"
                };

                element.datepicker(options);

                element.datepicker().on('hide', function () {

                    $timeout(function () {
                        var date_ = element.datepicker('getDate');

                        if(date_){
                            date_.setHours(scope.time.hours);
                        date_.setMinutes(scope.time.minutes);
                        //controller.$setViewValue(date_);
                        controller.$setViewValue(moment(date_).unix());
                        }


                        scope.$apply();
                    }, 1);
                });

                element.datepicker().on('changeDate', function () {

                    $timeout(function () {
                        var date_ = element.datepicker('getDate');

                        if(date_){
                            date_.setHours(scope.time.hours);
                        date_.setMinutes(scope.time.minutes);
                        //controller.$setViewValue(date_);
                        controller.$setViewValue(moment(date_).unix());
                        }


                        scope.$apply();
                    }, 1);

                });

                scope.onModelChange = function () {

                    console.log('onModelChange');

                    var date = controller.$modelValue;

                        if(angular.isDate(date)){
                            scope.time.hours = date.getHours();
                            scope.time.minutes = date.getMinutes();
                        }

//                    if (controller) {
//                        controller.$render();
//                     }
                };

               controller.$render = function () {
                        var unixDate = controller.$modelValue;

                        if(!unixDate){
                            return;
                        }

                        var date = new Date(unixDate * 1000);

                        if(angular.isDate(date)){
                            scope.time.hours = date.getHours();
                            scope.time.minutes = date.getMinutes();
                        }



//                        if (angular.isDefined(date) && date !== null && !angular.isDate(date)) {
//                            if (angular.isString(controller.$modelValue)) {
//                                date = controller.$modelValue; //uiDateConverter.stringToDate(attrs.uiDateFormat, controller.$modelValue);
//                            } else {
//                                throw new Error('ng-Model value must be a Date, or a String object with a date formatter - currently it is a ' + typeof date + ' - use ui-date-format to convert it from a string');
//                            }
//                        }
                        element.datepicker('setDate', date);
                        element.datepicker('update');
                    };

                scope.$watch(getModel, function (newVal) {
                   // if (typeof newVal !== undefined && newVal != null && newVal != "") {

                        scope.onModelChange();
                    //}
                }, true);


                if (controller) {
                    controller.$render();
                }
            }
        };
    }]);