Page 1 of 1

Action buttons in detail view

Posted: 2017-03-02 21:07
by eagle
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.

Re: Action buttons in detail view

Posted: 2017-09-17 10:54
by xbox2007
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>