I have a dropdown (front-end) where I collect some cloned pages. Whenever a page is selected I would like to show a second dropdown with info from related pages of the selected page, if that makes sense. But is there a way to do this or isn't this possible with couch?
It actually has little to do with Couch.or isn't this possible with couch?
The trick is to have the first dropdown make an AJAX call to the server with the selected page's ID.
The URL being called (a Couch managed template) can then output the pages related to the submitted page. This returned value of the AJAX call then updates the second dropdown.
I'll assume that the AJAX part, being front-end related, would be trivial for you.
You just need to create a Couch template that accepts the page ID and returns back the selected pages.
Hope it helps.