How to convert export text buttons to a dropdown list

How to convert export text buttons to a dropdown list

John DDDJohn DDD Posts: 1Questions: 1Answers: 0

Hi,

Can you please advise how I can change export buttons to a dropdown down list?

Answers

  • shinokshinok Posts: 7Questions: 2Answers: 0

    Try passing the dom option along with the buttons array. This will override the default tags that are used

    dom: {
    collection: {
    tag: 'ul',
    className: 'dt-button-collection f-dropdown open',
    button: {
    tag: 'a',
    className: 'small'
    }
    }
    }

This discussion has been closed.