How to resize the fields in a change template

How to resize the fields in a change template

1. Under Admin >> Change Template >> Select Field and Form Rules 

2. Create a rule on Form load and use the below script

 jQuery('#s2id_Change_REASONFORCHANGEID').attr("style","width:50%!important");


                  New to ADManager Plus?

                    New to ADSelfService Plus?

                      • Related Articles

                      • Script to Populate User Additional Field under Incident Template using FAFR

                        The script load the Requester Name under Incident Additional field ( As a pick list), by choosing the requester name under additional field the script populates the user additional field value. * Kindly create two additional fields under Admin -> ...
                      • How to diff of two Date& Time fields using FAFR

                        If you have two date and time additional fields or default fields, and if you want to capture the difference between those two fields in Hours and minutes, then use the below script to capture the value in an additional field, Under the respective ...
                      • Script to Update Fields in Change Template Based on Category

                        Requirement : Implementer, UAT Owner, Reviewer, Change Approver, Line Manager, and Change Owner should be updated based on the change category selected. Steps : 1. Stop the product. 2. Take a backup of the application . 3. Navigate to the ...
                      • FAFR - How to mandate field when SLA is overdue

                        1. Under Admin >> Incident Template >> Edit the template in question 2. Choose field and form rules and apply the below script On Form Submit var duebyDate = $CS.getValue("DUEBYDATE"); var currentDate = new Date(); if(currentDate>duebyDate) { ...
                      • Risk Matrix for Change using Custom Module

                        PURPOSE: Creating Risk matrix for changes that automatically calculates the risk of a change based on its priority and impact. Similar to the Priority matrix in the request module. TESTED IN BUILDS: 14504 STEPS: Step 1: Configure the Custom Module: ...