반응형


datatables.js 에서 다음과 같은 방법으로 로딩된 데이터를 csv 로 내보낼 수 있다.

(참조:https://datatables.net/extensions/buttons/examples/html5/simple.html)



<table id="example">


$(document).ready(function() {
    $('#example').DataTable( {
        dom: 'Bfrtip',
        buttons: [
            'copyHtml5',
            'excelHtml5',
            'csvHtml5',
            'pdfHtml5'
        ]
    } );
} );


반응형
반응형


datatables.js 사용하며 영문으로 표기된 부분의 언어를 바꾸는 방법은 아래와 같습니다.

[원본: https://datatables.net/reference/option/language ]

{
    "decimal":        "",
    "emptyTable":     "No data available in table",
    "info":           "Showing _START_ to _END_ of _TOTAL_ entries",
    "infoEmpty":      "Showing 0 to 0 of 0 entries",
    "infoFiltered":   "(filtered from _MAX_ total entries)",
    "infoPostFix":    "",
    "thousands":      ",",
    "lengthMenu":     "Show _MENU_ entries",
    "loadingRecords""Loading...",
    "processing":     "Processing...",
    "search":         "Search:",
    "zeroRecords":    "No matching records found",
    "paginate": {
        "first":      "맨처음",
        "last":       "마지막",
        "next":       "다음",
        "previous":   "이전"
    },
    "aria": {
        "sortAscending":  ": activate to sort column ascending",
        "sortDescending"": activate to sort column descending"
    }
}


반응형
반응형

간단한 JQuery 소스를 받아 연습해 봤다.
요즘 jQuery 공부? ㅡ,.ㅡa 를 해본답시고 필요에 의해 읽어보고 있다.
아래 기능이 가장 처음 해본 기능 중 하나라.. 올려본다.


slideUp, slideDown, slideToggle (속도, callback) 은 속도 "slow", "normal", "fast" 값으로 지정해 줄수 있으며 또한 숫자 밀리세컨드로 값지정이 가능하다.
옵션으로 callback (function) 도 가능하다. 에니메이션이 끝난 후 실행될 함수가 각각의 엘리멘트들이 한번씩 실행될때 마다 불려 진다.

function callback() {
  this; // dom element
}

출처 (http://.jquery.com")
반응형

+ Recent posts