使用Bootstrap Table插件,如何在首次加载时设置搜索字符串?

时间:2015-01-19 16:07:42

标签: javascript jquery twitter-bootstrap bootstrap-table

使用Bootstrap Table插件(http://bootstrap-table.wenzhixin.net.cn/documentation/)如何在第一次加载表时设置搜索字符串?

仅存在“数据搜索”属性以启用搜索输入,但这不会对其进行定值。

我查找了“数据搜索文本”属性,但我找不到它。

2 个答案:

答案 0 :(得分:0)

不支持数据属性,只能通过JavaScript

bootstrapTable({
    formatSearch: function () {
        return 'search string';
    }
});

答案 1 :(得分:0)

这是一个更好的解决方案:

var srch_str = 'your search string';
var bstable_first_load = true;
table.on('post-body.bs.table', function () {//when the table is loaded the first time and visible in the DOM, 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};
});