File to edit escalation wizard selection window (width)

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

File to edit escalation wizard selection window (width)

Post by dlukinski »

Hello XI support

Please remind which file and where to edit for increasing Escalation Wizard service selection window width permanently?
- as attached, but permanently..

Thank you
You do not have the required permissions to view the files attached to this post.
User avatar
tgriep
Madmin
Posts: 9190
Joined: Thu Oct 30, 2014 9:02 am

Re: File to edit escalation wizard selection window (width)

Post by tgriep »

To change the width for that field, edit this file

Code: Select all

/usr/local/nagiosxi/html/includes/components/escalationwizard/escalationwizard.php
The setting is around line 248 you would increase the width % to a larger value to make that box wider. I increased mine to 50% on the width in the example below

Code: Select all

<select class='required form-control' style='height: 300px; min-width: 200px; width: 50%;' name='selected[]' id='selected' multiple='multiple'>
Save the file and you may have to restart apache by running

Code: Select all

service httpd restart
Be sure to check out our Knowledgebase for helpful articles and solutions!
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

Re: File to edit escalation wizard selection window (width)

Post by dlukinski »

tgriep wrote:To change the width for that field, edit this file

Code: Select all

/usr/local/nagiosxi/html/includes/components/escalationwizard/escalationwizard.php
The setting is around line 248 you would increase the width % to a larger value to make that box wider. I increased mine to 50% on the width in the example below

Code: Select all

<select class='required form-control' style='height: 300px; min-width: 200px; width: 50%;' name='selected[]' id='selected' multiple='multiple'>
Save the file and you may have to restart apache by running

Code: Select all

service httpd restart

Thank you
Please close
Locked