Re: Add Download button into page template
Hi @AndKanPA ,
One of the way I used in my project is once you add your entity form in the web page.
In portal studio:
1. Click on the source code Editor part at the bottom
2. Add a column from components if you like
3. Add the button control html tag like below
<div class="col-md-12 columnBlockLayout" style="display: flex; flex-direction: column; width: 15%;"><button onclick="document.location='~/Admin'" style="background-color: #008CBA; font-size: 16px; color: black;">Download</button></div>
This will add download button in the bottom of the page. If you prefer you can use the same code in your template and make it as default.
Hope it helps.
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.