1

我一直在尝试将输入连接到智能表的过滤功能,而不使用在isGlobalSearchActivated. 我已经问过 Smart Table 的创建者是否可以这样做,但几天后没有收到他的回复。除了重新设置默认输入之外,你们中的任何人都知道一种简单的方法吗?

4

1 回答 1

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.

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

于 2014-01-16T04:38:24.647 回答