본문 바로가기
반응형

분류 전체보기4680

2개씩 홀수, 짝수로 가로 뽑아서 세로로 세울때 2005에서만 가능함 명구선배님 쿼리 with h_gub_rule1CTE (rownum , plusname , scode , sname) AS ( select row_number() over(order by gub_scode) as rownum , a.gub_scode + '@' + b.sd_name as plusname , a.gub_scode as scode , b.sd_name as sname from h_gub_rule as a left outer join h_sudang as b on a.gub_gubun = b.sd_gubun and a.gub_scode = b.sd_code WHERE a.gub_gubun ='01' and a.gub_month ='200811' and {fn substrin.. 2008. 11. 20.
Want DropDownList in Column to 'always' display in grid 컬럼의 속성을 dropdownlist으로 하면 드랍다운으로 나온다. 하지만 클릭시에만 드랍다운로드 된다. 컬럼Type을 버튼으로 설정을하고 아래 코드를 하면 col.CellButtonDisplay = CellButtonDisplay.Always; 라고 설정을하면 항상 버튼으로 나온다. 하지만 드랍다운의 경우는 블가능하다고 한다. http://forums.infragistics.com/forums/p/9187/35771.aspx#35771 여러 문제가 있단다. 그래서 webcombo나 templatecolumn을 하란다. 블로그에서 게시된 글 The WebGrid doesn't allow you to do this by default. When dealing with a web application, pe.. 2008. 11. 18.
Columns 컬럼 DropDownList 드랍다운 만들기 this.igGrid_ContractAP_Transact_2.DisplayLayout.Bands[0].Columns[grid3_inoutgubun].Type = ColumnType.DropDownList; ValueList mgubun = new ValueList(true); mgubun.ValueListItems.Add(""); mgubun.ValueListItems.Add("무상"); mgubun.ValueListItems.Add("유상"); this.igGrid_ContractAP_Transact_2.DisplayLayout.Bands[0].Columns[grid3_inoutgubun].ValueList = mgubun; 컬럼타입을 드랍다운으로 설정하고 add 시키고 붙이면 된다. 2008. 11. 17.
textbox readonly/lock 하기 // Set Text Value function setTextBox(txtName,val) { var textbox = igtbl_getElementById(txtName); textbox.innerText = jsTrim(val) ; } // Lock Textbox function lockTextbox(txtName, lock) { var textbox = igtbl_getElementById(txtName); textbox.readOnly = lock ; } 2008. 11. 17.
반응형