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