Has anyone got an example of an asset listing page which can dynamically update when checkboxes are clicked to filter the list? I have had a look at Asset Selections but it makes no sense to me.
Has anyone got an example of an asset listing page which can dynamically update when checkboxes are clicked to filter the list? I have had a look at Asset Selections but it makes no sense to me.
What would you be filtering by? Something like asset name or are you needing to do a search?
I have done dynamic filtering by just using javascript, really quite easy to filter the listing that way.
Quick example: http://jsfiddle.net/vdCnF/3/
Or, if you are wanting to do a search, you could use a Search Page and then dynamically reload the content when you check or uncheck one of the search options.
The latter is what would like to do but my initial search page is an asset listing page nested in a page with a simple search box.
The latter is what would like to do but my initial search page is an asset listing page nested in a page with a simple search box.
Well, then I would just use javascript and ajax to call the results of the search page each time an option is changed.
Is that what you were wanting?