Index: ssts-web/src/main/webapp/personalSetting/modifySearchMode.js =================================================================== diff -u -r15634 -r20147 --- ssts-web/src/main/webapp/personalSetting/modifySearchMode.js (.../modifySearchMode.js) (revision 15634) +++ ssts-web/src/main/webapp/personalSetting/modifySearchMode.js (.../modifySearchMode.js) (revision 20147) @@ -22,7 +22,7 @@ labelAlign: 'left', frame:true, labelSeparator:':', - title: '检索匹配配置', + title: '个人参数设置', bodyStyle:'padding:5px 5px 0px 25px', width: 400, labelWidth:80, @@ -144,6 +144,34 @@ readOnly : true }] }] + },{ + xtype : "fieldset", + title : '个性化设置', + layout:'column', + autoHeight : true, + items : [{ + layout : 'form', + columnWidth : 0.8, + labelWidth : 170, + items : [{ + xtype : 'combo', + fieldLabel : '申请单列表启用鼠标悬停事件', + id : 'mouseHoverEventOfApply', + name : 'mouseHoverEventOfApply', + valueField : 'value', + displayField : 'value', + store : new Ext.data.SimpleStore({ + fields : [ 'value'], + data : [['是'],['否']] + }), + forceSelection : true, + mode : 'local', + editable:false, + triggerAction : 'all', + anchor : '100%', + readOnly : true + }] + }] }], buttons: [{ @@ -201,6 +229,7 @@ Ext.getCmp('fontSize').setValue(fontSize); Ext.getCmp('suggestiveWarningInfo').setValue(searchMode.split("##")[2]); Ext.getCmp('messagePromptType').setValue(searchMode.split("##")[3]); + Ext.getCmp('mouseHoverEventOfApply').setValue(searchMode.split("##")[4]); } }, failure : function(response, options) { @@ -224,7 +253,7 @@ waitMsg:'正在更新,请稍候', waitTitle:'更新个人设置', success:function(form,action){ - showResult("更新成功!"); + showResult("更新成功,重新登录后才能生效!"); }, failure:function(form, action){ showResult("更新失败!");