JSON 데이터 사용
SBGrid는 JSON을 이용하여 DATA를 표시할 수 있습니다.
요약
SBGrid는 JSON을 이용하여 DATA를 표시할 수 있습니다.<!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> <script type="text/javascript" src="../../kr/co/softbowl/js/Library/json-minified.js"></script> <script type="text/javascript" src="../../js/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="../../kr/co/softbowl/js/Library/json2.js"></script> <script type="text/javascript" src="../../kr/co/softbowl/SBGrid.js"></script> <script type="text/javascript" src="../../js/DATA_JSON_POI_100.js"></script> <script type="text/javascript"> SBGrid.DEF.DOMAIN = "../../"; <script> <script type="text/javascript"> var datagrid1; $(document).ready(function(){ __createElements(); }); function __createElements (){ var GridInitInfo = { "strParentId" : "sbGridArea", "strId": "datagrid1", "strCaption": "Longitude^Latitude^Name^City Code^Classification", "strColWidth": "100, 100, 250, 139, 92", "strJsonRef": "grid_data", "strStyle": "width:100%; height:480px; ", "strDataHeight":"29", "strBackColorAlternate" : "#f7f7f7", "strExtendLastCol" : "scroll" }; var SBGridColumnInitInfo =[ { "id": "col1", "type": "output", "ref": "x", "style" : "text-align:center" }, { "id": "col2", "type": "output", "ref": "y", "style" : "text-align:center" }, { "id": "col3", "type": "output", "ref": "name" }, { "id": "col4", "type": "output", "ref": "city", "strJsonNodeSet": "combo_city", "strLabelRef": "label", "strValueRef": "value" }, { "id": "col5", "type": "output", "ref": "code", "strJsonNodeSet": "combo_code", "strLabelRef": "label", "strValueRef": "value", "style" : "text-align:center" } ]; datagrid1 = createSBGrid(GridInitInfo,SBGridColumnInitInfo); } function createSBGrid(SBGridInitInfo, SBGridColumnInitInfo){ var objJSONdata = new Object(); objJSONdata.objSBGridInitInfo = SBGridInitInfo; objJSONdata.arSBGridColumnInitInfo = SBGridColumnInitInfo; return SBGrid.DEF.createSBGrid(objJSONdata); } function getValueOfJSON_Ref(){ var strValue = "grid_data[2].name = " strValue += grid_data[2].name; alert(strValue); } function setValueOfJSON_Ref(){ grid_data[2].name = "Data가 변경되었습니다."; datagrid1.refresh(); } </script> </head> <body onload="__createElements()" class="sbgrid_body"> <div id="button_group"> <input type="button" class="sbgrid_demo_button" style="width:348px;height:30px;" id="button_getValue" value="JSON_Ref로 JSON Data 가져오기" onclick="getValueOfJSON_Ref();"></input> <input type="button" class="sbgrid_demo_button" style="width:348px;height:30px;" id="button_setValue" value="JSON_Ref로 JSON Data 설정하기" onclick="setValueOfJSON_Ref();"></input> </div> <div class="content_group"> <div id="sbGridArea"></div> </div> </body>; </html>