Browse Source

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

card007 4 years ago
parent
commit
91b52f17fd
1 changed files with 8 additions and 0 deletions
  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>