본문 바로가기
반응형

개발언어/3rd Part35

Infragistics NetAdvantage 2004 vol2 - Client Side Event - function igcmbo_getComboById(string comboId) comboId에 해당하는 WebCombo 객체를 리턴합니다. ex) var oCombo = igcmbo_getComboById('WebCombo1'); - function igtbl_getElementById(string tagId) browser에 종속적 방법으로 DOM (Document Object Model) Element 객체를 리턴합니다. ex) var elem = igtbl_getElementById('MyElemId'); elem.style.backgroundColor = "Red"; - function igtbl_getGridById(string gridId) gridId에 해당하는 Grid 객체를 리턴합니.. 2008. 3. 2.
How do I change the contents of a cell in code? 포럼에 내가 찾는 것과 비슷한 글을 보았다. You can use the update cell event for this.... just check the arguments for this event ..it ihink you will get the solution Ps : This Will make ur app slow ... Try using the client side events and ajax functions for a better solution 역시 Client-Side에서 JavaScript로 해결해야 할거 같다. Column을 Formula로 지정하였지만, 다시 Cell 값이 수정되면 계산이 다시 갱신 되어야 하는 데 다시 조회하거나 포뮬러를 재호출하면 값은 갱신되지만 프로그램이 느려진.. 2008. 2. 15.
컬럼포물러 지정과 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.
반응형