I’m not really sure which one I’m supposed to use.
The methods of the svyPopupFilter seem to be based around creating a toolbar that is attached to the grid.
But the examples on the demo seem to use I believe what is the basic svySearch.
Similar concept with filtering. Filtering with svyPopupFilter uses the toolbar. While the demo seems to manually enact filters.
To me, the svyPopupFilter system seems better due to it combining everything together with the toolbar. But since there isn’t a demo project of how it’s supposed to work as a frame of reference, I’m not sure how to setup the Search and Custom Filters properly.
There are different approaches for different use cases.
If you want to find something programmatically, then I recommend find mode
If you want to find something programmatically, but need advanced capabilities, then I recommend Query Builder
If you want to do text searching based on user input, then SvySearch is your friend.
If you want to filter, then I recommend using foundset/table filter params.
If you want t combine it all and link it to a grid, then I recommend the SvyPopupFilter
There are different approaches for different use cases.
If you want to find something programmatically, then I recommend find mode
If you want to find something programmatically, but need advanced capabilities, then I recommend Query Builder
If you want to do text searching based on user input, then SvySearch is your friend.
If you want to filter, then I recommend using foundset/table filter params.
If you want t combine it all and link it to a grid, then I recommend the SvyPopupFilter
Hope this helps!
Best,
Sean
Ahhhh I see.
My goal is in fact to do both searching AND filtering at the same time.
As in, Filters will be placed onto the foundset of a grid. But tangentially, the user can search for stuff WITHIN that filtered range of data.
So svyPopupFilter does look to be the best bet! I’m not sure why it has stopped working entirely for me then. Hopefully the sample solution I provided can give some context there.
I only used the code provided on the github wiki though… Is there any Sample Solution that implements svyPopupFilter (with both Filtering and Searching) that I could download and check out?
You can see searching and filtering working in concert with the tutorial sample solution, which is downloadable through the package manager.
Also, you can follow the tutorial here: https://github.com/Servoy/svySampleSolution/wiki
You can see searching and filtering working in concert with the tutorial sample solution, which is downloadable through the package manager.
Also, you can follow the tutorial here: https://github.com/Servoy/svySampleSolution/wiki
Hope this helps.
Best,
Sean
Thanks! Although, it doesn’t seem to have an example of what I’m curious about. I’ll just make a new thread about the specific situation.