angularjs ui-grid 行编辑数字的时候, type: 'number',当光标在编辑框时,鼠标滚动不会改变内容,但是可以通过键盘输入数字代码: { field: 'approve_reim_amount', displayName: '金额', type: 'number', cellFilter: 'number: 2', enableInfiniteScroll: false, cellEditableCondition: function ($scope) { return $scope.row.entity.canEdit; } },
1 回答
蝴蝶不菲
TA贡献1810条经验 获得超4个赞
其实就是用了ui-grid会改变h5的input 滚轮事件,添加上这个就好了,禁止滚动事件
$document.on("mousewheel", "input[type='number']", function () {
return false;
});
添加回答
举报
0/150
提交
取消