// 아래의 함수에서 전달받는 인자는 extjs에 정의된 인자들이다 . 이렇게 extjs가
// 정의하고 전달하는 인자가 무엇인지 궁금할 경우 arguments를 아래 처럼 이용하면
// 좋을 듯 하다.
/**
*** Grid에 renderer를 설정한다. 위치는 onReady밖에 있어도 상관없음.
*** 아래 함수는 Grid내 column의 renderer에서 호출하게 된다. 기본 7개 인자넘김.
*** Ext.grid.column.Column 참고할 것.
*/
function renderTopic(value, p, record, rowIndex , colIndex , store, view) {
for(var i=0; i< arguments.length; i++)
console.log(arguments[i]);
//console.log(rowIndex, colIndex, store.data.items[0], view);
//console.log( view);
return Ext.String.format(
'{0}{1} Forum',
value,
record.data.forumtitle,
record.getId(),
record.data.forumid
);
}