By ericinwisconsin on
I'm looking for a way for users to append data to a CCK text area field. Here's the basic idea:
I have a CCK text area field that lists addresses. I want users to be able to add to that list, but not be able to edit existing data. So I'd like to use editable fields to show them a box to enter an address when they're looking at a node. After they enter it, I'd like it to append that address to the CCK text area field and then clear the data they entered from the box.
I hope I'm clear on that. If not, please let me know.
Comments
AJAX?
It sounds like you want to edit active information on the fly.
Either way, you're probably looking at using jQuery or a similar javascript API that allows you to do AJAX and manipulate on-screen elements to do what you need.
Spiro