我一直在尝试将输入连接到智能表的过滤功能,而不使用isGlobalSearchActivated
时显示的内置输入。我问过智能桌的创造者是否有可能,但几天之后没有收到他的回复。除了重新设置默认输入外,你们中的任何一个人都知道一个简单的方法吗?
答案 0 :(得分:2)
如果你深入了解Smart-Table.debug.js文件,你会发现这段代码:
angular.module("partials/globalSearchCell.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("partials/globalSearchCell.html",
"<div class=\"pull-left form-group\">\n" +
" <input type=\"text\" class=\"form-control\" placeholder=\"Search\" ng-model=\"searchValue\"/ style=\"margin: 0;\">\n" +
"</div>");
}]);
只要ng-model
指向searchValue
,就可以将您想要的内容作为输入。
如果你的情况比这更复杂,请告诉我。