Form for adding attachements

q97

Member
I'd like to try modifying the attachment form so that it will accept a document number from our DM system, and then automatically create the URL so that the linked document displays in the attachment pane.

If I manually put the correct URL in, it works, so really all I should need to do is add the before and after bits of the URL. Anyone know the form or program number that I need to look at to modify this?
 
I'm starting to think this may be some javascript, rather than an actual form - anyone?
 
Add a Media Object Control to a custom form, and then use the Insert URL system function to display the URL containing the document number.

Or, add a Text Block Control and then use the Add Segment system function to add some HTML code to the control to display the URL in an iFrame, eg:

<font class="small">Code:</font><hr /><pre><iframe src="http://webserver/docs/show.jsp?docnumber=123456" width="100%" height="600"></iframe> </pre><hr />
 
Back
Top