일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 이클립스
- 마이크로소프트
- Excel
- 태그를 입력해 주세요.
- 자바스크립트
- c#
- ASP
- 윈폼
- DataGrid
- 엑셀
- 단축키
- replace()
- CONVERT()
- 리포팅서비스
- 오라클
- 프로시저
- IIS
- jQuery
- 윈도우
- aspnet
- Winform
- javascript
- SSRS
- microsoft
- attr()
- MS
- 비주얼스튜디오
- MSSQL
- windows
- oracle
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] DataGrid 안에 라디오버튼 한개만 선택하게 본문
DataGrid 안에 라디오버튼 한개만 선택하게
// 내용: 콜백목록에 있는 라디오버튼을 하나만 클릭되도록 함.
// 작성자: 최보현(bhchoi@00db.co.kr)
// 작성일: 2010/12/04
functionSelectOne(rdo,gridName)
{
/* Getting an array of all the "INPUT" controls on the form.*/
all = document.getElementsByTagName("input");
for(i=0;i
{
if(all[i].type=="radio") /*Checking if it is a radio button*/
{
/*I have added '__ctl' ASP.NET adds '__ctl' to all the controls of DataGrid.*/
varcount=all[i].id.indexOf(gridName+'__ctl');
if(count!=-1)
{
all[i].checked=false;
}
}
}
rdo.checked=true; /* Finally making the clicked radio button CHECKED */
}
<asp:TemplateColumn>
<HeaderStyleWidth="5%">
<ItemStyleHorizontalAlign="Center">
<ItemTemplate>
<input type="radio" runat="server" id="rdo" onclick="SelectOne(this,'dgList')" VALUE="rdo" NAME="RadioGroup" />
</ItemTemplate>
</asp:TemplateColumn>
--> dgList : DataGrid ID
http://www.codeproject.com/KB/aspnet/DATAGRID_WITH_RADIOBUTTON.aspx
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] LINQ to SQL(group by, sum) (0) | 2015.12.04 |
---|---|
[ASP.NET] Textbox 배경색 code-behind에서 변경하는 방법 (0) | 2015.12.04 |
.NET Framework 다운로드 링크 (0) | 2015.12.04 |
[C#] TextBox Width 속성설정하기(%) (0) | 2015.12.04 |
[C#] Enterprise Library를 이용한 트랜젝션 처리 (0) | 2015.12.03 |