Newbies ataft Posted January 8, 2003 Newbies Posted January 8, 2003 I'm stumped. I have three fields that are just collection points for adding information to a portal below it. The fields are: date, name, and notes The user will click a button next to the fields that will add the information into the portal. The script goes like this: Freeze Window Goto Portal, last row copy (current record) date paste (related file) date copy (current record) name paste (related file) name copy (current record) notes paste (related file) notes clear (current record) date clear (current record) name clear (current record) notes Goto field (current record) date Refresh window I thought this method and script would cut and paste the data into the portal, the portal would refresh/resort, and then I could post data after data into the portal. Buuuuut... in reality, what's happening is every time I run the script, the new data overwrites the last post even though the last post is not in the last row of the portal (it's in the 1st). Any suggestions? Here's what I ultimately want: A "journal" of posts to a portal where the fields aren't modifiable by the user. Are there better methods to achieving this? Thanks! -Ansel
jasonwood Posted January 8, 2003 Posted January 8, 2003 You want to turn off "Allow creation of related records" so that users cannot add related records through the portal. Then you want your button to set globals in your JournalEntriesDB to the values of your entry fields (do not use copy/paste, use "set field". Then run an external script in your JournalEntriesDB which creates a new record, and sets the fields to the values stored in the globals. Again, use "set field" NOT copy/paste. You could also add a few extra steps to the main script which clears the entry fields.
Newbies ataft Posted January 9, 2003 Author Newbies Posted January 9, 2003 Jason, That was the ticket. I left the house without my brain that day. Thanks so much! -Ansel
Recommended Posts
This topic is 7990 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now