Select Extension - Option for selecting only filtered rows

Select Extension - Option for selecting only filtered rows

mtrayn01mtrayn01 Posts: 12Questions: 3Answers: 0

Is there an option for the Select extension, so that select all only selects the filtered records?

I see there is a way to do this with TableTools but wanted to know if there was a new method for doing it with the new Select extension.

Answers

  • mtrayn01mtrayn01 Posts: 12Questions: 3Answers: 0

    Although there was no response here, I managed to figure out how to do what I needed.

    For anybody interested, you need to extend the button as follows

    {
    text: 'Select All',
    action: function () {
    table.rows( {search:'applied'} ).select();
    }
    },

This discussion has been closed.