June 15, 200421 yr I have a portal in my DB. I want to put a button in the portal so that it will show up on every row. I then want to assign a script to that button. This script will run in the parent file, not the file being shown in the portal. Is there a way that when I select the button that I can have a different script run depending on which portal row is being selected? Larry
June 15, 200421 yr Set Field [ gPortalRow, Status(CurrentPortalRow) ] If [ gPortalRow = 1 ] #Do something Else If [ gPortalRow = 2 ] #Do something else Else ... End If End If
Create an account or sign in to comment