2

I'm using a jquery-bootgrid to display paged data. Is there a way to use javascript to change to a given bootgrid page based on data-row-id? Basically the user can click on a marker on a map and I need the bootgrid to change to the page with the matching data-row-id.

Siguza
  • 21,155
  • 6
  • 52
  • 89
Paul Cooper
  • 196
  • 2
  • 7

1 Answers1

0

This is a bit old, but, since it is sitting here unanswered:

  $(document).on("loaded.rs.jquery.bootgrid", function()
  {
     YourTableName.find(".ClassNameForYourLink").on("click", function(event)
     {
        location.href="PageYouWanttoGoTo";
     }
  }
RationalRabbit
  • 1,037
  • 13
  • 20