Asset listing filters


(Clementoke) #1

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.

 


(Nic Hubbard) #2

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.


(Clementoke) #3

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.


(Nic Hubbard) #4

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?


(Clementoke) #5

Yes thanks, I'll try that.

Cheers,

Clement