diff options
Diffstat (limited to 'TableContent.m')
-rw-r--r-- | TableContent.m | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/TableContent.m b/TableContent.m index e6ee519d..edf6a359 100644 --- a/TableContent.m +++ b/TableContent.m @@ -599,6 +599,15 @@ [countText setStringValue:[NSString stringWithFormat:NSLocalizedString(@"%d rows in table", @"text showing how many rows are in the result"), numRows]]; } +/** + * Enables or disables the filter input field based on the selected filter type. + */ +- (IBAction)toggleFilterField:(id)sender +{ + // If the user is filtering for NULLs then disabled the filter field, otherwise enable it. + [argumentField setEnabled:(![[[compareField selectedItem] title] hasSuffix:@"NULL"])]; +} + //edit methods - (IBAction)addRow:(id)sender |