본문 바로가기
개발언어/3rd Part

Infragistics Forums에서의 답

by 엔돌슨 2008. 2. 11.
반응형

Cancelling the browser event at this point won't really do anything, since the Grid has already determined that an EditKey press has occured. 
You instead want to cancel the grid's processing of the event, which is done by returning true from the handler. 
Try this instead:

[CODE]
if(event.keyCode==13)
{
    event.cancel=true;
    var cell=igtbl_getCellById(cellId).getNextCell();
    if(cell)
    {
        cell.activate();
        cell.beginEdit();
    }
}
[/CODE]
무슨말인지는 알겠지만 이렇게 해도 EditMode에서는 다음셀로 이동하지 않는다.
난 셋타임으로 해결했다.
그리고 키보드 이벤트 enter key값을 취소하거나 변경하려고 했던거지.. 이것도 잘안된다.