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 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 -> ...
                    • Template configuration

                      This report will give you the complete list of templates configured in the application. MSSQL SELECT serd.Name AS "Service Category", list.Templatename AS "Template Name", (SELECT STUFF( ( SELECT ',' + tgm.QUEUENAME FROM TemplateToGroupMapping tgm ...
                    • 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 ...
                    • How to populate requester details in request additional field

                      Requirement: Populate requester additional field information into request additional field. Usecase: Let us consider a scenario where certain employee details are imported from the Active Directory into User - Additional Fields. The business ...
                    • Change template count

                      SELECT    ct.NAME "Template",            Count(chdt.changeid) "count" FROM      changedetails chdt  LEFT JOIN changetemplate ct  ON        chdt.templateid=ct.templateid  WHERE     chdt.createdtime >= <from_lastmonth>  ...