Author Topic: catch the maximum button (= fullscreen) event  (Read 2001 times)

kjvjung

  • Pro Deluxe
  • Newbie
  • *
  • Posts: 33
    • View Profile
catch the maximum button (= fullscreen) event
« on: September 11, 2017, 04:14:58 pm »
Hello

For special reasons, I need to catch the maximum button (= fullscreen) event.

For example,

Click sorting ==== beforeSort: function (evt) {.....}
 

Reset filters Click ==== type: 'button',
label: 'Reset filters'
listener: function () {
.....
}

maximum button (= fullscreen) event ====?

kjvjung

  • Pro Deluxe
  • Newbie
  • *
  • Posts: 33
    • View Profile
Re: catch the maximum button (= fullscreen) event
« Reply #1 on: September 11, 2017, 04:20:10 pm »
Sorry. Resolved.

      $(".pq-ui-button").click(
         function() {
            //..................
         }
      );

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: catch the maximum button (= fullscreen) event
« Reply #2 on: September 11, 2017, 04:48:27 pm »