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 ...
                    • 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>  ...
                    • Change Risk Assessment Questionnaire using Custom module - Implementation steps

                      We’re excited to share a step-by-step guide( Attached) on implementing a Change Risk Assessment Questionnaire in ServiceDesk Plus using the Custom Module feature. This solution leverages Custom Modules, Change Additional Fields, and Field & Form ...