Hi,
My Browse grid contains a column date. How can I only display all lines that contain a date? I would prefer a filter button or checkbox to toggle.
Sorry for the stupid questions. I'm sure it's not hard to solve.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
browse filter
Re: browse filter
amit,
The nuSearchAction() function has now been improved so you'll need to latest version, here's how it works...
https://wiki.nubuilder.cloud/ ... archAction
Steven
The nuSearchAction() function has now been improved so you'll need to latest version, here's how it works...
https://wiki.nubuilder.cloud/ ... archAction
Code: Select all
if(nuFormType() == 'browse'){
nuAddActionButton('filterNumbers', 'Show Only 003', 'nuSearchAction("", "003")');
}
Steven
-
- Posts: 36
- Joined: Sat Jun 02, 2018 1:26 pm
Re: browse filter
Cool, thanks

... but how do I do that?amit wrote: How can I only display all lines that contain a date?
-
- Posts: 36
- Joined: Sat Jun 02, 2018 1:26 pm
-
- Posts: 36
- Joined: Sat Jun 02, 2018 1:26 pm
Re: browse filter
@Steven: Would you be so kind as to show me how to do it? I know you're busy, but I'd really appreciate it.