meeting-room-booking-system / mrbs-code

MRBS application code
Other
120 stars 59 forks source link

Order of Fields in View Entry Page #2937

Open jberanek opened 3 years ago

jberanek commented 3 years ago

Hi,

I have successfully created some custom fields, and modified the order in which all fields are displayed on the edit_entry.php page as below:

$entry_fields = array('create_by', 'name', 'supervisor', 'patient_number', 'patient_name', 'treatment', 'start_time', 'end_time', 'description', 'room_id', 'type', 'confirmation_status', 'privacy_status');

Is it possible to change the order of fields in the view_entry.php page?

Steve

Reported by: stevekiss

Original Ticket: mrbs/support-requests/2246

jberanek commented 3 years ago

You should be using the config variable $edit_entry_field_order. See systemdefaults.inc.php for details. This will give the same order on the edit_entry and view_entry pages. (It should also give the same order in email notifications, but doesn't yet - see https://sourceforge.net/p/mrbs/support-requests/2221/).

Original comment by: campbell-m