The exception details are not getting collapsed/expanded on 7.3.x
search cancel

The exception details are not getting collapsed/expanded on 7.3.x

book

Article ID: 255591

calendar_today

Updated On:

Products

ProxySG Software - SGOS SG-VA

Issue/Introduction

On 7.3.x, for the exception pages, the details are not getting collapsed/expanded i.e. not showing details.

Resolution

For custom exception pages the HTLM tags used were <details>..</details> as below:

<details>
<summary class="More">Health Policies</summary>
<p>For further information please refer to the following policies:<br>
<ul>
<li><a href="http://www.xyz.com/test_076.html" target="_blank">'Use & Misuse Management of Health Communications Systems'</a><br /></li>
<li><a href="http://www.xyz.com/test__052.html" target="_blank"> Health Electronic Information Security'</a><br /></li>
<li><a href="http://www.xyz.com/test__081.html" target="_blank">'Health Code of Conduct'</a></li><br />
</ul>
</details>

Need to change the tag from <details>..</details> to <details open>..</details open> which helped to resolve the issue. Refer to the changes below:

<details open>
<summary class="More">Health Policies</summary>
<p>For further information please refer to the following policies:<br>
<ul>
<li><a href="http://www.xyz.com/test_076.html" target="_blank">'Use & Misuse Management of Health Communications Systems'</a><br /></li>
<li><a href="http://www.xyz.com/test__052.html" target="_blank"> Health Electronic Information Security'</a><br /></li>
<li><a href="http://www.xyz.com/test__081.html" target="_blank">'Health Code of Conduct'</a></li><br />
</ul>
</details open>