Objective:
This article shows you an example of CSS code that will remove the Refresh Icon from a field linked formula field.
Before you get started:
These articles might be helpful before you read this one:
When a question in a Youreka form is field linked to a Salesforce formula field, the result from the formula is displayed on the Youreka form in a read only view. Out of the box, next to that read only field is a small button that allows end users to refresh that formula.
In the event that an organization wishes to remove this refresh button from view, they can apply the following CSS code snippet to their Form Template.
.slds-scope .slds-button.js-refresh-formula {
display: none;
}
.slds-scope .control-group .controls .slds-form-element__control.formula-field input.slds-input {
width: 100%;
}
Before
Comments
0 comments
Please sign in to leave a comment.