Page 1 of 1

How to use DV Action Buttons in a New Page?

Posted: 2022-07-28 12:24
by mohamed
Hello,

I have managed - to display Detail View of a record in a new page instead of the default page
ProjectDirectry\templates\Network_templateDV.html

But I don't know how add the Action Buttons:
Save Changes
< Back
Print Preview
Delete
Save As Copy
Next



1. Is it possible ?

2. Do I need to use INCLUDE in the new page or so, to call these funtions, etc ?



The default or original code in ProjectDirectry\templates\Network_templateDV.html

Code: Select all

		<!-- DV action buttons -->
		<hr class="hidden-md hidden-lg">
		<div class="col-md-4 col-lg-2" id="Fortinet_dv_action_buttons">
			<div class="btn-toolbar">
				<div class="btn-group-vertical btn-group-lg" style="width: 100%;">
					<%%UPDATE_BUTTON%%>
				</div><p></p>
				<div class="btn-group-vertical btn-group-lg" style="width: 100%;">
					<%%DESELECT_BUTTON%%>
					<%%DVPRINT_BUTTON%%>
					<%%DELETE_BUTTON%%>
				</div><p></p>
				<div class="btn-group-vertical btn-group-lg" style="width: 100%;">
					<%%INSERT_BUTTON%%>
				</div>
			</div>
		</div>