• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Putting a back link into the details of view

Putting a back link into the details of view 12 years 5 months ago #20159

  • xsbucks
  • xsbucks's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 2
Is there a {Back} function to add in the details on a Submission View menu?

<table _mce_new="1" style="height: 40px; border-color: #CCCCCC; border-width: 0px; background-color: #000000; width: 100%; border-style: solid;" border="2">
<tbody>
<tr>
<td>ID#:</td>
<td>{ID:value}</td>

</tr>
<tr>
<td>Date:</td>
<td>{Date:value}</td>
</tr>
<tr>
<td>Unit#:</td>
<td>{Unit Number:value}</td>
</tr>
<tr>
<td>Vendor:</td>
<td>{Vendor:value}</td>
</tr>
<tr>
<td>Invoice#:</td>
<td>{Invoice Number:value}</td>
</tr>
<tr>
<td>Value:</td>
<td>{Value:value}</td>
</tr>
</table>


Is what i have so far. Onclick of a submission it takes me to this table layout. I would like to have a Back button to take to the previous Submissions layout. Thanks!
The administrator has disabled public write access.

Putting a back link into the details of view 12 years 2 months ago #21758

  • jeffhoneyager
  • jeffhoneyager's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 46
  • Thank you received: 8
Place this after the < /table> in the "Details Layout"


<script>
    document.write('<a href="' + document.referrer + '">Go Back</a>');
</script>

This will take you back to the list from the details.
The administrator has disabled public write access.
The following user(s) said Thank You: xsbucks, clr550rs
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!