일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리포팅서비스
- 태그를 입력해 주세요.
- 윈도우
- 비주얼스튜디오
- IIS
- ASP
- 프로시저
- 단축키
- attr()
- c#
- 이클립스
- 자바스크립트
- SSRS
- Excel
- MSSQL
- replace()
- Winform
- 마이크로소프트
- MS
- 오라클
- aspnet
- 윈폼
- DataGrid
- 엑셀
- javascript
- windows
- CONVERT()
- jQuery
- oracle
- microsoft
- Today
- Total
목록attr() (7)
DJ메탈짱™의 Free Style
$(document).ready(function() {$('#xmlTON').attr('disabled', 'disabled');$('#xmlSIZE').attr('disabled', 'disabled');// 2012/07/30 by 최보현// submit발생시 disabled된 selectbox 값은 requestform으로 전달되지 않아// 버튼 클릭시 해당 컨트롤의 disabled 속성을 제거하도록 함.$('#btnSave').click(function(){$('#xmlTON').removeAttr('disabled');$('#xmlSIZE').removeAttr('disabled');});});
// 2012/05/08 input type=text의 readonly true/false 설정 function UpdateCssClass(obj,type) { if (type == "EDIT") { $("#" + obj).removeClass("input02"); $("#" + obj).addClass("input00"); $("#" + obj).attr("readOnly",false); obj.readOnly = false; } else if (type == "READ") { $("#" + obj).removeClass("input00"); $("#" + obj).addClass("input02"); $("#" + obj).attr("readOnly", true); obj.readOnly = true..
var url = "http://stackoverflow.com"; $(location).attr('href',url);
// 내 용 : 검색조건 입력후 엔터키 선택시 검색이 되도록함. // 대상컨트롤 : input type = text, ID = "txt" 포함. (radio, checkboc, hidden, password 컨트롤 제외) // 그 이외의 컨트롤을 제어해주지 않으면 postback이 일어나는 문제가 있어 엔터키가 적용되지 않도록 함. // 작성자 : 최보현(bhchoi@00db.co.kr) // 작성일 : 2010/12/22 $('input').not(':password,:checkbox,:radio','hidden').each(function(){ if($(this).attr("id").indexOf("_0230") != -1) { $(this).keypress(function() { if (event...
// Array를 활용한 SelectBox Item 추가var newOptions = {'00':'오전12','01':'오전1','02':'오전2','03':'오전3','04':'오전4','05':'오전5','06':'오전6' ,'07':'오전7','08':'오전8','09':'오전9','10':'오전10','11':'오전11' ,'12':'오후12','13':'오후1','14':'오후2','15':'오후3','16':'오후4','17':'오후5','18':'오후6','19':'오후7','20':'오후8','21':'오후9','22':'오후10','23':'오후11'};var select = $('#xmlSchEndTime');var options = select.attr('options');$('opt..
// 이미지버튼 비활성화.$('#Img3').attr("disabled", "disabled"); // 이미지버튼 활성화.$('#Img3').removeAttr("disabled");
ASP.NET에서 Jquery 를 사용하여 데이터그리드 내에 존재하는 CheckBox를 모두 선택하는 기능임. *.aspx javascript (Jquery) /// /// 내 용: 데이터그리드내에있는체크박스를모두선택함. /// 작성자: 최보현 /// 작성일: 2010/05/28 /// $(document).ready(function() { $('#chkAll').click( function() { $("INPUT[type='checkbox']").attr('checked', $('#chkAll').is(':checked')); }); });