.NET/C#.NET6 Checkbox in Repeater Control on tr click event $('#check_table tr').click(function (event) { var checkbox = $(this).find('td:first-child :checkbox'); var result = ""; checkbox.attr('checked', !checkbox.is(':checked')); $(checkbox).click( //alert(checkbox.is(':checked')) result = Order_Check(checkbox.is(':checked')) ); if (result == "false") { checkbox.attr('checked', !checkbox.is(':checked')); } }); 2018. 3. 2. TR 클릭 이벤트시 특정 TD 이벤트 제외 tr 클릭 이벤트에서 특정 td에는 예외처리 하는 방법!! onclick='event.cancelBubble=true;' 2018. 3. 2. [C#.NET] Object sender 사용법 aspx에서 asp형태로 무언가를 만들고 그거에 대한 이벤트 처리를 하고자 하면 다음과 같이 함수를 설정 이때 파라미터가 되는 값은 다음처럼 처리 하면 됨 예를 들어 asp:button에서 Onclick 버튼을 통한 작업을 수행하고자 한다면 public void Test(object sender, EventArgs e) { Button Para = sender as Button; if (Para.Text.ToString() == "테스트") { SelectData_ETC_Filter("B"); } else { SelectData_ETC_Filter("A"); } } 이상 끝! 2015. 11. 4. Change the forecolor of an item in a repeater Change the forecolor of an item in a repeater 출처 : http://www.c-sharpcorner.com/blogs/7592/change-the-forecolor-of-an-item-in-a-repeater-based-on-the-s.aspx 2015. 9. 21. 이전 1 2 다음