Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
4f928dc579
1 changed files with 4 additions and 2 deletions
|
@ -653,9 +653,11 @@ func (table *Table) FilterRows() {
|
|||
operator := table.Filters[j].Operator
|
||||
|
||||
if nil == row.Cells[index].Value {
|
||||
switch operator {
|
||||
case FilterOperatorIsNotEmpty:
|
||||
if FilterOperatorIsNotEmpty == operator {
|
||||
pass = false
|
||||
} else if FilterOperatorIsEmpty == operator {
|
||||
pass = true
|
||||
break
|
||||
}
|
||||
|
||||
if KeyTypeText != row.Cells[index].ValueType {
|
||||
|
|
Loading…
Add table
Reference in a new issue