ServiceDesk

 View Only
  • 1.  Increase the size of the Description field – within the process page

    Posted Feb 09, 2011 11:41 AM

    I am trying to increase the size of the Description field but I am only able to increase the size of the web part, not field within with the information. Anyone who can help me?



  • 2.  RE: Increase the size of the Description field – within the process page

    Posted Feb 10, 2011 12:39 PM

    Unfortunately this seems to be impossible, as the text field size seems to be fixed inside that webpart.

    I have worked around this by creating a new Smart Task which opens a new window with a multiline text field which holds the description. That's scrollable and resizable by the user. This can be done by editing the SD.Incident Management Project and adding a new Smart Task.



  • 3.  RE: Increase the size of the Description field – within the process page

    Posted Feb 10, 2011 08:17 PM

    attempting the same thing, i was able to track the field size down to a CSS stylesheet inside workflow designer on our servicedesk server that controlled the description box size

    we manually changed the text field size, which worked for about 15mins, but then it reset itself

    if anyone else can find a way heres the location:

    \\{server}\c$\Program Files (x86)\Altiris\Workflow Designer\Ensemble\App_Themes\Symantec\Layout.css

    i don't understand css code but our web guy says look for WP_Middle an insert something like:

    line.height = {number}  

    i would think it would be some sort of modification to the project theme, and reload project to server, but i haven't attempted it



  • 4.  RE: Increase the size of the Description field – within the process page

    Posted Feb 15, 2011 05:32 PM

    Did some searching and it seems that layout.css will be recreated automatically, but it should be possible to create a custom.css with modifications. Anyone?



  • 5.  RE: Increase the size of the Description field – within the process page
    Best Answer

    Posted Mar 01, 2011 09:55 AM

    Default settings: (extract)

    .pnlDescription

    {

          max-height: 100px; /* sets max-height value for all standards-compliant browsers */

          overflow:auto;

          height: expression( this.scrollHeight > 99 ? "100px" : "auto"); /* sets max-height for IE */

          word-wrap:break-word;            

    }

     

    Changed to:

    .pnlDescription

    {

          max-height: 300px; /* sets max-height value for all standards-compliant browsers */

          overflow:auto;

          height: expression( this.scrollHeight > 299 ? "300px" : "auto"); /* sets max-height for IE */

          word-wrap:break-word;            

    }

     

    This increased the size of the control.