var datagrid;
var SBGridProperties = {};
function createGrid(){
SBGridProperties.parentid = 'SBGridArea';
SBGridProperties.id = 'datagrid';
SBGridProperties.jsonref = 'ct_data.resources';
SBGridProperties.selectmode = 'free';
SBGridProperties.rowheader = ['seq', 'update'];
SBGridProperties.columns = [
{caption : [''], ref : 'check', width : '30px', style : 'text-align:center', type : 'checkbox'},
{caption : ['학원명'], ref : 'academy', width : '168px', style : 'text-align:left', type : 'input'},
{caption : ['설립자(성명)'], ref : 'name', width : '163px', style : 'text-align:left', type : 'output'}
];
datagrid = _SBGrid.create(SBGridProperties);
$('#textValue').text('버튼을 클릭하여 전체 열 수를 확인해보세요.');
};
function setExtend(){
var value = $('#tValue').val();
datagrid.setExtendLastCol(value);
};
function getExtend(){
datagrid.getExtendLastCol();
}