본문 바로가기

javascript69

[dataTables.js] rowAdd 버튼에 tooltip 있을 경우 rowAdd: function rowAdd() { this.$addButton.tooltip('hide'); 2020. 4. 20.
[dataTables.js] row 추가 row.add() dataTables.js에서 수정시 build: function build() { this.datatable = this.$table.DataTable({ aoColumns: [null, null, null, null, null, { //col개수 "bSortable": false }], lengthMenu: false, searching: false, "info": false, "paging": false }); }, rowAdd: function rowAdd() { data = this.datatable.row.add(['', '', '', '', '', actions]); //col개수 this.datatable.order([0, 'desc']).draw(); //asc:오름차순 desc:내림차순 .. 2020. 4. 20.
kakao 지도 api (주소로 마커 생성 + 클릭한 위치 좌표 출력) 좌표 값을 모를 때 주소를 이용해서 지도로 이동하고, 지도에서 위치를 클릭하여 좌표 값을 얻을 수 있다. 2020. 4. 17.
kakao 지도 api (마커 + 컨트롤 추가) 2020. 4. 17.
[progressbar.js] 프로그레스 바 만들기 https://jsfiddle.net/kimmobrunfeldt/sqwdkrg0/ Edit fiddle - JSFiddle - Code Playground jsfiddle.net 2020. 4. 15.
[bootstrap.js] multiple modals에서 modal-backdrop 수정하기 $(document).on('show.bs.modal', '.modal', function (event) { var zIndex = 1040 + (10 * $('.modal:visible').length); $(this).css('z-index', zIndex); setTimeout(function() { $('.modal-backdrop').not('.modal-stack').css('z-index', zIndex - 1).addClass('modal-stack'); }, 0); }); 2020. 4. 13.
체크박스 체크 했을 때 이벤트 checked $("#Checked").on("click", function(){ if ($(this).is(':checked') == true){ $("#basic_companyId").hide(); $("#a_companyId").show(); }else{ $("#basic_companyId").show(); $("#a_companyId").hide(); } }); 2020. 4. 10.
[bootstrap] multiple selected 선택 n개 이상일 때, 전체일 때 // add ellipsis if (selectedItems.length > 2) title += '...'; // if all options selected if (selectedItems.length == $selectOptions.length) title = '전체'; 2020. 4. 8.
[bootstrap] Switch change event $('.js-switch-small').on('change.bootstrapSwitch', function(e) { (e.target.checked) ? $(this).siblings('.switch-toggle').show() : $(this).siblings('.switch-toggle').hide(); //console.log(e.target.checked); }); 2020. 4. 7.