我正在使用jquery-bootgrid来显示分页数据。有没有办法使用javascript根据data-row-id更改为给定的bootgrid页面?基本上用户可以点击地图上的标记,我需要将bootgrid更改为具有匹配的data-row-id的页面。
答案 0 :(得分:0)
这有点旧,但是由于它没有答案,所以坐在这里:
$(document).on("loaded.rs.jquery.bootgrid", function()
{
YourTableName.find(".ClassNameForYourLink").on("click", function(event)
{
location.href="PageYouWanttoGoTo";
}
}