2016年10月9日 星期日

使用 ag-grid headerCellRenderer 加入 select 或 input 時避免觸發排序

.directive("stoppropagation", function () {
        return {
            link: function (scope, element, attrs, ngModel) {
              element.on('click', function (event) {
                    event.stopPropagation();
                });
            }
        }
    })

沒有留言:

自訂權限驗證機制

// 使用 filter [Route("api/[controller]")] [ApiController] [Authorize] [TypeFilter(typeof(CustomAsyncAuthorizationFilter))] public c...