Skip to content

Commit

Permalink
make column(hidden or display) can be searched
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Mar 7, 2016
1 parent 13eb482 commit 1d3dd8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/TableDataStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ export class TableDataStore {
if (this.colInfos[key] && row[key]) {
const { format, filterFormatted, formatExtraData, searchable, hidden } = this.colInfos[key];
let targetVal = row[key];
if (!hidden && searchable) {
if (searchable) {
if (filterFormatted && format) {
targetVal = format(targetVal, row, formatExtraData);
}
Expand Down

0 comments on commit 1d3dd8e

Please sign in to comment.