var datagrid;
var SBGridProperties = {};
var TempCombo = [{},{},{},{},{},{},{},{}];
var listOneData = [
{ 'label' : '한국' , 'value' : 'Korea'},
];
function createGrid(){
SBGridProperties.parentid = 'SBGridArea';
SBGridProperties.id = 'datagrid';
SBGridProperties.jsonref = 'TempCombo';
SBGridProperties.rowheader = ['seq','update'];
SBGridProperties.selectmode = 'free';
SBGridProperties.extendlastcol = 'scroll';
SBGridProperties.fixedrowheight = 50;
SBGridProperties.columns = [
{caption : ['combo\n( 기본형 )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value'}, ref : 'temp1', width : '150px',style : 'text-align:center'},
{caption : ['oneclickedit\n( true )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', oneclickedit:true}, ref : 'combo3', width : '150px', style : 'text-align:center'},
{caption : ['itemcount\n( 2 )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', itemcount:2}, ref : 'combo4', width : '150px', style : 'text-align:center'},
{caption : ['displayui\n( true )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', displayui:true}, ref : 'combo5', width : '150px', style : 'text-align:center'},
{caption : ['position\n( left )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', position:"left"}, ref : 'combo6', width : '150px', style : 'text-align:center'},
{caption : ['listshowcode \n( true )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', listshowcode :true}, ref : 'combo7', width : '150px', style : 'text-align:center'},
{caption : ['listshowcodejointext \n( & )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', listshowcode :true, listshowcodejointext : '&'}, ref : 'combo8', width : '150px', style : 'text-align:center'},
{caption : ['singlelistenterselect \n( true )'], type : 'inputcombo' , typeinfo : {ref:'listOneData', label:'label', value:'value', singlelistenterselect :true}, ref : 'combo10', width : '150px', style : 'text-align:center'},
{caption : ['displayui\n( true )'], type : 'inputcombo' , typeinfo : {ref:'comboData', label:'label', value:'value', displayui:true}, ref : 'combo11', width : '150px', style : 'text-align:center'},
{caption : ['unselect'], type : 'inputcombo' , typeinfo : {ref:'comboDataUnselect', label:'label', value:'value', unselect : {label : "=선택=", value : "없음"}}, ref : 'combo12', width : '150px', style : 'text-align:center'},
];
datagrid = _SBGrid.create(SBGridProperties);
};