본문 바로가기
반응형

개발언어/3rd Part35

Infragistics Forums에서의 답 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(.. 2008. 2. 11.
웹그리드에 원하는 위치에 새로운 로우 삽입하기 Excel Like Add Rows Above, Below at client side in Infragistics UltraWebGrid with the help of UltraWebMenu 역시 방법은 이런식으로 해야하나? Infragistics Ultrawebgrid is a popular ASP.NET RAD web grid control which supports creating hierarchical datagrid in a breeze. Its CSOM [Client side Object Model] exposes many client side events which greatly helps to meet any kind of challenging requirements and simply r.. 2008. 2. 10.
울트라웹그리드 헤더명 변경하기 [CODE] // 컬럼헤더 이름바꾸기 function Change_Columns() { var grid = igtbl_getGridById("UltraWebGrid1"); grid.Bands[0].Columns[0].setHeaderText("변경1"); grid.Bands[0].Columns[1].setHeaderText("변경2"); } [/CODE] 0번째 0컬럼이 "변경1"로 0번째 1컬럼이 "변경2"로 각각 변경이 된다. 클라이언트단에서 이루어지는 되도 참 느리다... 2008. 2. 4.
일본어사이트) UltraWebGrid 핸들러 추가하는 방법 참고한 홈페이지 http://codezine.jp/a/articleprint.aspx?aid=1668 구글에서 검색하다가 찾았다. 웹그리드에서 핸들러를 추가하는 방법을 몰라서 참 힘들었다. 그림은 피픽을 사용하여 웹페이지 스크롤 캡쳐를 하였다. 핸들러 추가하는 방법은 더 쉽다. 번개표시는 이벤트지만, 핸들러는 그냥 속성옆에 DisplayLayout 을 눌러서 Client-Side 를 눌러서 핸들러를 선택하면 된다. 2008. 2. 4.
반응형