반응형 개발언어347 컬럼포물러 지정과 Column Footer 합계 출력 컬럼 포물러지정해서 계산결과 보여주고 Footer 에 Total 출력하는 소스 부분이다. avg도 있다. [CODE] protected void UltraWebGrid1_InitializeLayout(object sender, Infragistics.WebUI.UltraWebGrid.LayoutEventArgs e) { // set up the Total line item of the WebGrid e.Layout.Bands[0].Columns.Add("Total","Total"); Infragistics.WebUI.UltraWebGrid.UltraGridColumn c = e.Layout.Bands[0].Columns.FromKey("Total"); c.DataType = "System.Double";.. 2008. 2. 13. Column에 Formula로 계산식 적용하기 http://forums.infragistics.com/forums/p/1819/13560.aspx#13560 포럼에 갔더니 어떤식으로 추가하여야 하는 지에 대해서 알려 주는 글을 보았다. How to perform calculation in Ultrawingrid Hi Ritu, You can add an unbound column to the grid. The best place to do this is in the InitializeLayout event. Just place an UltraCalcManager component on your form and you can assign a Formula to the column. I'm not sure if there are functions for.. 2008. 2. 13. TortoiseSVN 설치하기 TortoiseSVN를 설치하기 위해서는 SVN를 먼져 설치하여야 한다.SVN 다운로드 받기http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91Windows Windows binaries - ATTENTION!: The mod_dav_svn binaries available here are NOT compatible with Apache 2.2 -- see the Windows Apache 2.2.x folder.이름상태최종 수정자크기예약설명 svn-1.4.5-setup.exe 안정 ebswift 작성일 2007년 8월 28일 화요일 3.43 mB Windows installer with the basic win32 binaries .. 2008. 2. 13. 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. 이전 1 ··· 64 65 66 67 68 69 70 ··· 87 다음 반응형