使用不同的输入使用智能表进行过滤

时间:2013-08-01 17:33:03

标签: angularjs smart-table

我一直在尝试将输入连接到智能表的过滤功能,而不使用isGlobalSearchActivated时显示的内置输入。我问过智能桌的创造者是否有可能,但几天之后没有收到他的回复。除了重新设置默认输入外,你们中的任何一个人都知道一个简单的方法吗?

1 个答案:

答案 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,就可以将您想要的内容作为输入。

如果你的情况比这更复杂,请告诉我。