Focus 가 이동 되었을때의 EVENT 동작을 확인 합니다.


요약

SBGrid에서 포커스 이동시에 발생하는 EVENT 입니다.

입력값

String : 이벤트


String : 이벤트 발생시 호출할 사용자 함수명



예) datagrid1.addEventListener("onfocus","eventProcess","","");
function eventProcess(event){
//cell값 변경시 동작되는 부분//
}

상세설명

SBGrid가 포커스를 가졌을 때 발생하는 이벤트, 포커스가 다른 행으로 이동 시에 발생하는 이벤트, 포커스가 다른 열로 이동 시에 발생하는 이벤트등을 처리할 수 있습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@page language="java"   contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
<head>
	<meta content="IE=9" http-equiv="X-UA-Compatible">
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<title>SoftBowl SBGrid Example</title>
	<link href="../../css/common.css" type="text/css" rel="stylesheet"/>
    <link href="../../css/common/stylesheet.css" type="text/css" rel="stylesheet"/>
	<link href="../../kr/co/softbowl/css/Sbgrid_default.css" type="text/css" rel="stylesheet"  />
	<link href="../../css/user_defined_sbgrid_style.css" type="text/css" rel="stylesheet"/>
	<script type="text/javascript" src="../../js/jquery-1.7.2.min.js"></script>
	<script type="text/javascript" src="../../kr/co/softbowl/SBGrid.js"></script>
	<script type="text/javascript" src="../../js/DATA_JSON_POI_10.js"></script>
	<script type="text/javascript">
		SBGrid.DEF.DOMAIN = "../../";
		var datagrid1;
		function __createElements (){
			var objJson = 	{
								"strParentId" : "sbGridArea",
								"strId": "datagrid1",
								"strCaption": "Longitude^Latitude^Name^City Code^classification",
								"strColWidth": "100, 100, 280, 120, 96",
								"strJsonRef": "grid_data",
								"strStyle": "width:700px; height:225px; ",
								"strBackColorAlternate" : "#EFE0ED",
								"strExplorerbar": "sortshow"
							
					};
									
			datagrid1 = createSBDataGrid(objJson);
			var objCol =	[
								{ "id": "col1", "type": "input", "ref": "x", "style" : "text-align:center" },
								{ "id": "col2", "type": "input", "ref": "y", "style" : "text-align:center" },
								{ "id": "col3", "type": "input", "ref": "name" },
								{ "id": "col4", "type": "combo", "ref": "city", "strJsonNodeSet": "combo_city", "strLabelRef": "label", "strValueRef": "value" },
								{ "id": "col5", "type": "combo", "ref": "code", "strJsonNodeSet": "combo_code", "strLabelRef": "label", "strValueRef": "value", "style" : "text-align:center" }
					];
			datagrid1.createColumns(objCol);		
			
			datagrid1.refresh();
	
			datagrid1.addEventListener("onfocus","eventProcess","","");
			datagrid1.addEventListener("onblur","eventProcess","","");
			datagrid1.addEventListener("onrowchanged","eventProcess","","");
			datagrid1.addEventListener("oncolchanged","eventProcess","","");	
		}
	</script>
    
	<script type="text/javascript">
		function softbowl_ready_model (event)
		{
			model1_ready();
		}
	
		function eventProcess( event)
		{
			var strMessage = "Row = " +datagrid1.getMouseRow() + " Col = " + datagrid1.getMouseCol();
			var strEvent = "event 발생 위치 : " + strMessage + " event 명 :" +event.name; 
			
			eventName.value = strEvent +  "\n"  +eventName.value;
		} 
	</script>
</head> 
<body onload="__createElements()" class="sbgrid_body">
	
    <div id="sbGridArea"></div>
    </br>
    <textarea  id="eventName"  style="width:348px; height:90px; overflow:hidden"></textarea>                
      

</body>
</html>