Mys.eLearningList = function(config)
{
	Mys.eLearningList.superclass.constructor.call(this, config);
};

Ext.extend(Mys.eLearningList, Mys.boardList, {
	boardType : 5,
	boardID : 14,
	order : "insert_date",
	dir : "desc",
	emptyText : "이러닝",
	
	itemClass : Mys.eLearningItem,
	pager : new Mys.KMAPager,
	
	headerTemplate : (new Ext.Template([
		'<table cellspacing="0" cellpadding="0" style="border:solid 5px #E7E7E7; height:40px;" width="100%">',
			'<tr>',
				'<td class="c name elaerning-num" width="45" height="30"><span class="top-title">번호</span></td>',
				'<td class="c name-subject" width="410"><span class="top-title">제목</span></td>',
				'<td class="c name" width="60"><span class="top-title">맛보기</span></td>',
				'<td class="c name-date" width="80"><span class="top-title">등록일</span></td>',
				'<td class="c name" width="50"><span class="top-title">조회</span></td>',
			'</tr>',
		'</table>'
	])).compile()
});