제목 : Re : gridview 에서 체크박스 사용
글번호:
|
|
583
|
작성자:
|
|
김동규
|
작성일:
|
|
2007/05/08 오후 9:35:00
|
조회수:
|
|
3463
|
저도 VB 라서 영 어색하네요.
아래 사이트 참고해서 해보세요.
http://aspnet.4guysfromrolla.com/articles/053106-1.aspx
On 2007-05-08 오후 3:13:00, '하나' wrote:
------------------------------------------------------------
> <asp:TemplateField HeaderText="Select">
> <HeaderTemplate>
> <asp:CheckBox ID="chkAll" Text = "전부선택" ToolTip="전부선택/취소"
> runat="server" />
> </HeaderTemplate>
> <ItemTemplate>
> <asp:CheckBox ID="CBSelect" TextAlign ="left" runat="server" />
> </ItemTemplate>
> </asp:TemplateField>
>전부선택 을 클릭하면 그리드뷰의 체크박스를 전체 체크하고싶은데요
> Protected Sub GV_authGrp_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GV_authGrp.RowDataBound
>
> If (e.Row.RowType = DataControlRowType.Header And e.Row.RowType = DataControlRowType.DataRow) Then
> Dim ChkAll As CheckBox = (CType(GV_authGrp.Rows(0).FindControl("ChkAll"), CheckBox))
> Dim i As Integer
> For i = 0 To GV_authGrp.Rows.Count - 1
> Dim CBSelect As CheckBox = (CType(GV_authGrp.Rows(i).FindControl("CBSelect"), CheckBox))
> If ChkAll.Checked = True Then
> CBSelect.Checked = True
> Else
> CBSelect.Checked = False
> End If
> Next
> End If
>
> End Sub
>
>이렇게 했는데 안되네요,클릭해도 여기에 들어오지 않아요,닷넷 초보자의 서러움 ㅠㅠ
>도와주세요~
------------------------------------------------------------