From 0cc04ee20d3c598b7028a8a31789926250400f50 Mon Sep 17 00:00:00 2001 From: zheng Date: Wed, 18 May 2016 18:14:18 +0800 Subject: [PATCH] Group edit (#241) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 修复主机组编辑时回车导致主机丢失问题 在主机组编辑页面,如果直接执行回车会导致主机组中主机信息丢失。 本修复方法是关闭回车提交 * 编辑主机组在移除过滤保存时数据会丢失 现象:在反向移除选择的主机时,用过滤框搜索移除主机此时保存的数据是当前过滤显示的数据 后果:会造成原有主机组数据丢失 修复:在保存之前触发一次空值搜索 --- templates/jasset/group_edit.html | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/jasset/group_edit.html b/templates/jasset/group_edit.html index f99e5f50c..b29ad7a48 100644 --- a/templates/jasset/group_edit.html +++ b/templates/jasset/group_edit.html @@ -153,6 +153,7 @@ }); function on_submit(id){ + search_ip('', 'asset_select', 'asset_select_total') //提交之前清空过滤框 $('#'+id+' option').each( function(){ $(this).prop('selected', true)