浏览代码

ST24PRJ-204 [결함][BOS>사용자관리] 업체별 조회 안됨

card007 4 年之前
父节点
当前提交
91b52f17fd
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      src/main/webapp/WEB-INF/views/business/SupplyVendorPopupForm.html

+ 8 - 0
src/main/webapp/WEB-INF/views/business/SupplyVendorPopupForm.html

@@ -136,6 +136,14 @@
 		
 		$('#btnSearchSupplyVendor').trigger('click');
 	});
+
+	// 엔터키 처리
+	$('#searchSupplyVendorForm input[name=supplyVendorNm]').keypress(function (event) {
+		if (event.which === 13) {
+			event.preventDefault();
+			$('#btnSearchSupplyVendor').trigger('click');
+		}
+	});
 /*]]>*/
 </script>