Bootstrap-Table插件,按初始搜索值过滤

时间:2015-04-29 17:35:13

标签: javascript jquery twitter-bootstrap bootstrap-table

使用bootstrap-table插件(http://bootstrap-table.wenzhixin.net.cn/documentation/)我试图设置一个表,在表加载时自动搜索默认搜索值。我在javascript文件中设置了默认值,但除非您在搜索框中单击并按任意键,否则它不会启动搜索。

我还尝试使用本页推荐的一些代码(with the Bootstrap Table plugin, how to set a search string on first load?)创建一个新的javascript文件以加载其他所有内容,并设置初始值,但也有同样的问题。我试图弄清楚如何在不按键的情况下初始化搜索。

var srch_str = 'v1.00';
var bstable_first_load = true;

$(document.getElementById('server_table')).on('load-success.bs.table',function () {//when the table is loaded the first time and visible, set the search string...
    if(srch_str.length > 0 && bstable_first_load){$('.fixed-table-toolbar').find('.search > :input').val(srch_str);
    bstable_first_load = false};
})

0 个答案:

没有答案