Image with a label
Hi,
My requirement is to display a small image along with the label of the field just like pega display * image with the label if required is checked. Can we add our own image along with the label? Or, it there a way to refer an image where we write the label? TIA.
The best way to do this would be to do as Pega does - using CSS. Inspect the element and you will see:
span.iconRequired.standard_iconRequired {
.....
background-image: url(.../images/requiredstar_13824365626.gif!!.gif);
.......
}
you could do something like this: <label>some text <img src='...'></label>
but that would mean using non-autogenerated HTML and that would be "not good."
eddie