Index: ssts-web/src/main/webapp/disinfectsystem/basedatamanager/tousse/tousseForm.js =================================================================== diff -u -r31384 -r31398 --- ssts-web/src/main/webapp/disinfectsystem/basedatamanager/tousse/tousseForm.js (.../tousseForm.js) (revision 31384) +++ ssts-web/src/main/webapp/disinfectsystem/basedatamanager/tousse/tousseForm.js (.../tousseForm.js) (revision 31398) @@ -913,8 +913,20 @@ eventEdit = null; } } - }); - + }); + top.Ext4.tip.QuickTipManager.init(); + materialsPanel.on('mouseover', function(e) { + var index = materialsPanel.getView().findRowIndex(e.getTarget()); + var cell = materialsPanel.getView().findCellIndex(e.getTarget()); + if(index !== false){ + var columnItem = materialCm.config[cell] || {}; + var headerName = columnItem.header || ''; + if(headerName == '' || headerName == '是否植入物' || headerName == '排序'){ + return; + } + e.getTarget().setAttribute('data-qtip', '点击开始编辑'); + } + }); var colWidth = 0.33; formObj = new top.Ext.FormPanel({ id : 'tousseDefinitionForm', @@ -2862,7 +2874,14 @@ materialsPanel.getSelectionModel().selectRows(array); materialsPanel.getView().refresh(); setMaterialSequence(); - } + }, + notifyEnter:function(dd, e, data){ + //选择行 + var rows = materialsPanel.getSelectionModel().getSelections(); + //选择行数 + var count = rows.length; + data.ddel.innerText = count+' 行被选中'; + } }) if(id != 0){ formObj.form.load({ Index: ssts-web/src/main/webapp/common/common.css =================================================================== diff -u -r31384 -r31398 --- ssts-web/src/main/webapp/common/common.css (.../common.css) (revision 31384) +++ ssts-web/src/main/webapp/common/common.css (.../common.css) (revision 31398) @@ -223,5 +223,5 @@ cursor: move !important; } .materialsPanelClass .x-grid3-td-name,.materialsPanelClass .x-grid3-td-countShow { - cursor: default !important; + cursor: text !important; } \ No newline at end of file