본문 바로가기
반응형

울트라웹그리드6

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.
울트라웹그리드 헤더명 변경하기 [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에서 선택한 로우 삭제하는 방법 HOWTO:How to delete rows on the client in UltraWebGrid? 참고를 하였다 Summary In order to delete rows on the client in javascript you need to use the javascript function: igtbl_deleteRow(gridName,rowID). First, be sure to allow the deletion itself by setting the AllowDeleteDefault property in the DisplayLayout object or AllowDelete on the specific band. The function needs to be passed the name of the .. 2008. 2. 4.
UltraWebGrid 매뉴얼 트리 내가 찾아서 봐야할 울트라 웹에딥터 매뉴얼 트리다. 2008. 1. 15.
반응형