Date Picker in Custom Toolbar

Date Picker in Custom Toolbar

ngungongungo Posts: 64Questions: 23Answers: 2

I have successfully installed buttons and a selector on the custom toolbar but have not been able to implement a date picker. I have tried many ways including hints from the forums but there is not one in the custom bar. Any hint would be appreciated. Thanks.

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,892Questions: 1Answers: 10,144 Site admin

    Could you clarify what you mean but the custom toolbar? Can you link to a page showing what you have tried please.

    Allan

  • ngungongungo Posts: 64Questions: 23Answers: 2
    edited January 2016

    Hi Allan,
    Thanks for the response.

    Custom Toolbar

    Link to my page

    edit: I think I got something. I'll put final answer when totally worked out.

  • ngungongungo Posts: 64Questions: 23Answers: 2

    It works half way now. It seems I need a css file or maybe I got wrong ID. Any hints would be appreciated. Link

    PS. Sorry about the double post. I was clumsy.

    var table = $('#tn2016').DataTable( {
        dom: 'B<"toolbar">frtip',
        // ...
    });
    
    $("div.toolbar").html(
        '<form id="pform">'+
        '<select>'+
            '<option selected>Monthly</option>'+
            '<option>bi-Monthly</option>'+
            '<option>Weekly</option>'+
        '</select>'+
        '</form>'+
        '<input type="text" id="dpicker">'
    );
    
    // alert($("#pform option:selected").text());
    $("#pform").on('change', function() { 
        alert($("#pform option:selected").text());
    });
    $(function() {
        $("#dpicker").datepicker();
    });
    
  • allanallan Posts: 61,892Questions: 1Answers: 10,144 Site admin
    Answer ✓

    Looks like it is missing the jQuery UI date picker CSS, but the functionality looks fine. Nice one.

    Allan

  • ngungongungo Posts: 64Questions: 23Answers: 2

    I've looked all date picker examples but could not find it. That makes me think I have to assign some class to the element to pick up the the style. Can you think of any example so I can imitate?

    ngungo

  • ngungongungo Posts: 64Questions: 23Answers: 2

    I got it. Thanks Allan.

    //code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css
    
This discussion has been closed.