When will the message attribute for the Print Button be directly addressable

When will the message attribute for the Print Button be directly addressable

mciolettimcioletti Posts: 4Questions: 1Answers: 0

It seems like this should be available, but it's not. I should be able to directly update the message after the table is build with a simple jQuery reference and a val() call. I've wasted hours trying to get this to work with little success. Also... the accordion needs to have a pair of consistent, simple commands to set opened and closed, like "Open" and "Close". Currently, you need to set active to false to close and 0 to open, with 0 acting like a toggle not an open. This is just nuts.

Answers

  • allanallan Posts: 63,850Questions: 1Answers: 10,519 Site admin

    Do you mean the message in the print view (i.e. the message option of print)? You can provide that as a function allowing it to be dynamically created:

    message: function () {
      return ...;
    }
    

    Also... the accordion needs to have a pair of consistent, simple commands to set opened and closed, like "Open" and "Close".

    Could you clarify what accordion? Do you mean the child rows - its interface is row().child.show() and row().child.hide().

    Allan

This discussion has been closed.