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
File to edit escalation wizard selection window (width)
File to edit escalation wizard selection window (width)
You do not have the required permissions to view the files attached to this post.
Re: File to edit escalation wizard selection window (width)
To change the width for that field, edit this file
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
Save the file and you may have to restart apache by running
Code: Select all
/usr/local/nagiosxi/html/includes/components/escalationwizard/escalationwizard.phpCode: Select all
<select class='required form-control' style='height: 300px; min-width: 200px; width: 50%;' name='selected[]' id='selected' multiple='multiple'>Code: Select all
service httpd restartBe sure to check out our Knowledgebase for helpful articles and solutions!
Re: File to edit escalation wizard selection window (width)
tgriep wrote:To change the width for that field, edit this fileThe 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 belowCode: Select all
/usr/local/nagiosxi/html/includes/components/escalationwizard/escalationwizard.phpSave the file and you may have to restart apache by runningCode: Select all
<select class='required form-control' style='height: 300px; min-width: 200px; width: 50%;' name='selected[]' id='selected' multiple='multiple'>Code: Select all
service httpd restart
Thank you
Please close