ng-grid单击编辑以打开弹出窗口

时间:2013-11-20 14:41:40

标签: angularjs ng-grid

我有一个网格,网格底部有编辑和删除按钮。

单击“编辑”按钮,我希望它打开一个包含信息的“模态”弹出窗口。来自模态中显示的选定行。

这是我的HTML。

<div class="gridStyle" ng-grid="gridOptions"><!--ng-grid-->
</div>
<button ng-click="??" ng-  disabled="!singleSelection()">Edit</button>
<button ng-click="??" ng-disabled="disabled">Delete</button>

我的JS如下:

 $scope.gridOptions = {
            data: 'scheduleData.scheduleList',
            columnDefs: [
                { field: 'id', displayName: 'ID', visible: false },
                { field: 'disabled', displayName: 'Enabled', cellFilter: 'checkmark' }
                { field: 'dpName', displayName: 'Description' },
                { field: 'dpType', displayName: 'Type' },
                { field: 'dpProtection', displayName: 'Protection' },
                { field: 'doProtectionParam', displayName: 'DP Protection Paramters', visible: false },
                { field: 'startDate', displayName: 'Start Date', visible: false, cellFilter: 'date:\'M/d/yy h:mm a\'' },
                { field: 'endDate', displayName: 'End Date', visible: false, cellFilter: 'date:\'M/d/yy h:mm a\'' },
                { field: 'recurrenceType', displayName: 'Recurrence' },
                { field: 'everyNth', displayName: 'Estimated Duration', visible: false },
            enableCellSelection: false,
            enableSorting: true,
            enableColumnResize: true,
            enableColumnReordering: true,
            showColumnMenu: true,
            showFilter: true,
            showFooter: true,
            enableRowselection: true,
            multiSelect: true,
            selectedItems: $scope.selections

            };

非常感谢任何帮助。

由于

1 个答案:

答案 0 :(得分:1)

我得到了这个工作制作foll。更改为HTML

 <button ng-click="openModal(selections[0])" ng-  disabled="disableButtons(selections)">Edit</button>  

在我的JS中,

          $scope.openModal = (selections) => {

            var modalInstance = $modal.open({
                templateUrl: 'link to URL',
                controller:RelatedController,
                resolve: {
                    schedule: function () {
                        return selections.id == null ? selections : selections.clone();
                    }
                }
            });

        }