使用javascript

时间:2015-06-07 19:16:07

标签: javascript twitter-bootstrap jquery-bootgrid

我正在使用jquery-bootgrid来显示分页数据。有没有办法使用javascript根据data-row-id更改为给定的bootgrid页面?基本上用户可以点击地图上的标记,我需要将bootgrid更改为具有匹配的data-row-id的页面。

1 个答案:

答案 0 :(得分:0)

这有点旧,但是由于它没有答案,所以坐在这里:

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