How can you filter a listview where you want to get all records that satisfy all values in another dropdown ?
I have a dynamic dropdow whos values changes based on data in a database. (Say I have HeaderIDs in a dropdown ) . I want to filter a listview that shows all those records where HeaderID is all values from dropdow.
Listview is attached to the tabel in SQL. Lets call it TableXYZ. I cannot see naything in advanced filter condition where I can specify all values from a dropdown.
I want to do something like Select * from TableXYZ where HeaderID in ( all values from dropdown ) .
I have tried creating a stored proc and created a smart object to get values and do the join in database but because listview is attached to a table it doesn't filter even after executing a stored proc smart object and trying to return same values as existing table from a stroed proc.
Any suggestion ?