/**
* 그리드 아이템 값 변경 완료 이벤트
* 그리드 아이템 값 변경 완료시 이벤트가 발생한다.
*
* @param {Object} objInst 그리드 컴포넌트 인스턴스
* @param {number} nRow 그리드 행 인덱스 (Zero-Based)
* @param {number} nColumn 그리드 열 인덱스 (Zero-Based)
* @param {string} strPrevItemText 변경전 아이템 텍스트
* @param {string} strItemText 변경후 아이템 텍스트
*/
function grd_on_itemvaluechanged(objInst, nRow, nColumn, strPrevItemText, strItemText)
{
factory.consoleprint("on_itemvaluechanged> Start");
factory.consoleprint("on_itemvaluechanged> Grid Object Name = " + objInst.getname());
factory.consoleprint("on_itemvaluechanged> nRow = " + nRow);
factory.consoleprint("on_itemvaluechanged> nColumn = " + nColumn);
factory.consoleprint("on_itemvaluechanged> strPrevItemText = " + strPrevItemText);
factory.consoleprint("on_itemvaluechanged> strItemText = " + strItemText);
}