Action buttons in detail view

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
eagle
Veteran Member
Posts: 39
Joined: 2013-01-09 15:38

Action buttons in detail view

Post by eagle » 2017-03-02 21:07

I would like to always have the action buttons ( Save, Cancel etc) at the bottom of my detail view.

Now those buttons appear to the left of the input fields if the screen is wide. If I make the screen narrower they move to the bottom, below the last input field.

Is there an easy way to always make the buttons appear at the bottom?

Thanks for all help.

xbox2007
Veteran Member
Posts: 129
Joined: 2016-12-16 16:49

Re: Action buttons in detail view

Post by xbox2007 » 2017-09-17 10:54

if you want like this

please make change in ??????_templateDV.html.html

my table name is Proposal
and file i made change is Proposal_templateDV.html

you need to make change in dv_action_buttons to be same this code

this my code

Code: Select all

<div class="panel-body" id="Proposal_dv_container">
	<!-- child links -->
	<div class="row">
		<div class="col-xs-12">
			<div class="clearfix"></div>
		</div>
	</div>
	<hr>
		<div class="row text-center">
			<div class="col-md-12" id="Proposal_dv_action_buttons">
				<div class="btn-toolbar">
					
					<%%UPDATE_BUTTON%%>   <%%DESELECT_BUTTON%%>   <%%DVPRINT_BUTTON%%>   <%%DELETE_BUTTON%%>   <%%INSERT_BUTTON%%>
					<button type="button" onclick="back_form()" class="btn btn-info"><i class="glyphicon glyphicon-home"></i> العودة لملف الحالة </button>
					<p>
					</div>
				</div>
			</div>
		</div>
	<hr>
Attachments
zzzz.png
zzzz.png (10.97 KiB) Viewed 2664 times

Post Reply