Buttons as Dropdpwns

Buttons as Dropdpwns

karliekarlie Posts: 83Questions: 17Answers: 0

Hi, Can anyone point me in the right direction for displaying buttons as dropdowns? I have looked at this link but can't seem to get it to work https://datatables.net/extensions/buttons/examples/initialisation/collections.html

My code looks like this:

new $.fn.dataTable.Buttons( table, [
    
        { extend: "create", editor: editor },
        { extend: "edit",   editor: editor },
        { extend: "remove", editor: editor },
        { extend: "selected",text: 'Duplicate',
                action: function ( e, dt, node, config ) {
                    // Start in edit mode, and then change to create
                    editor
                        .edit( table.rows( {selected: true} ).indexes(), {
                            title: 'Duplicate record',
                            buttons: 'Create from existing'
                        } )
                        .mode( 'create' );
                }
            },
        { extend: "copy", exportOptions: {columns: ':visible'}},
        { extend: "excelHtml5", exportOptions: {columns: ':visible'}},
        { extend: "csvHtml5", exportOptions: {columns: ':visible'}},
        { extend: "print", exportOptions: {columns: ':visible'}},
        'colvis', 'pageLength'  
    ] );
    
        table.buttons().container()
    .appendTo( $('.col-md-6:eq(0)', table.table().container() ) );

Can't upload an image to this post for some reason (says image upload failed), but you can see it here:

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin
    edited February 2018

    Try:

    new $.fn.dataTable.Buttons(table, [
      {
        extend: "collection",
        text: "Actions",
        buttons: [
          {
            extend: "create",
            editor: editor
          },
          {
            extend: "edit",
            editor: editor
          },
          {
            extend: "remove",
            editor: editor
          },
          {
            extend: "selected",
            text: "Duplicate",
            action: function(e, dt, node, config) {
              // Start in edit mode, and then change to create
              editor
                .edit(
                  table
                    .rows({
                      selected: true
                    })
                    .indexes(),
                  {
                    title: "Duplicate record",
                    buttons: "Create from existing"
                  }
                )
                .mode("create");
            }
          }
        ]
      },
      {
        extend: "collection",
        text: "Export",
        buttons: [
          {
            extend: "copy",
            exportOptions: {
              columns: ":visible"
            }
          },
          {
            extend: "excelHtml5",
            exportOptions: {
              columns: ":visible"
            }
          },
          {
            extend: "csvHtml5",
            exportOptions: {
              columns: ":visible"
            }
          },
          {
            extend: "print",
            exportOptions: {
              columns: ":visible"
            }
          }
        ]
      },
      "colvis",
      "pageLength"
    ]);
    
    table
      .buttons()
      .container()
      .appendTo($(".col-md-6:eq(0)", table.table().container()));
    

    Allan

  • karliekarlie Posts: 83Questions: 17Answers: 0

    Thanks Allan, that unfortunately produces an error

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin

    I missed a closing } in the second collection. Edited the above post now.

  • karliekarlie Posts: 83Questions: 17Answers: 0

    Not sure if I'm making a mistake, but that still throws an error Allan

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin
    Answer ✓

    Sorry - one more try. Another trivial syntax error. I've run it through a parser this time!

    Allan

  • karliekarlie Posts: 83Questions: 17Answers: 0

    Thanks very much Allan, much appreciated.

This discussion has been closed.