Skip to main content

This content has been archived and is no longer being updated. Links may not function; however, this content may be relevant to outdated versions of the product.

Support Article

Scrollbar does not display when textarea is disabled

SA-75503

Summary



On disabling the textarea, unable to scroll the textarea.


Error Messages



Not Applicable


Steps to Reproduce

  1. Create a section with a textarea that is set to 'Disabled always' and scrollbar is set to true.
  2. Create a work object.
  3. Set the property value to scroll (several lines).
  4. Scroll the textarea.


Root Cause



When the textarea is disabled, the disabled CSS style (pointer-events: none;) prevented scrolling. [disabled]:not(.dv-icon), 
:disabled { 
pointer-events: none; 
cursor: not-allowed; 
}



Resolution



Perform the following local-change: 
  1. Save the py-enduser71-workarea-overrides.css to the application ruleset
  2. Add the below code snippet after the line of code '[disabled]:not(.dv-icon),:disabled' class.

    textarea.textAreaStyle:disabled{ 
    pointer-events: auto; 
    cursor: auto!important;
    }
BUG-435205 is raised for this issue.


 

Published March 19, 2019 - Updated December 2, 2021

Was this useful?

0% found this useful

Have a question? Get answers now.

Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.

We'd prefer it if you saw us at our best.

Pega Community has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.

Close Deprecation Notice