var datagrid;
var SBGridProperties = {};
function createGrid(){
SBGridProperties.parentid = 'SBGridArea';
SBGridProperties.id = 'datagrid';
SBGridProperties.xmlref = 'xmlData';
SBGridProperties.xmlnodeset = 'root/griddata/row';
SBGridProperties.rowheader =['seq', 'update'];
SBGridProperties.selectmode = 'free';
SBGridProperties.columns = [
{caption : [ '이름'], ref : 'name', width : '200px', style : 'text-align:center', type : 'input'},
{caption : [ '나이'], ref : 'age', width : '200px', style : 'text-align:center', type : 'output'},
{caption : [ '성별'], ref : 'sex', width : '200px', style : 'text-align:center', type : 'output'},
{caption : [ '직급'], ref : 'class', width : '200px', style : 'text-align:center', type : 'output'},
{caption : [ '전화번호'], ref : 'phone', width : '200px', style : 'text-align:center', type : 'output', format:{type : 'string', rule : '0##-####-####'}}
];
datagrid = _SBGrid.create(SBGridProperties);
};