ng-table icon indicating copy to clipboard operation
ng-table copied to clipboard

horizontal range filter in example page

Open mjamroz opened this issue 8 years ago • 0 comments

in your examples, http://codepen.io/christianacca/pen/yNWeOP instead of

    self.tableParams = new NgTableParams({}, {
      filterOptions: { filterFn: ageRangeFilter },
      dataset: simpleList,
      filterLayout: "horizontal"
    });

it should be

    self.tableParams = new NgTableParams({}, {
      filterOptions: { filterLayout: "horizontal",  filterFn: ageRangeFilter },
      dataset: simpleList,

    });

to have horizontal range filter in a header.

mjamroz avatar Feb 20 '17 10:02 mjamroz