Hi Team,
I have 2 interfaces, one which hold only the calender icon and other one which formats the date.
1st interface AB_icon
a!richTextDisplayField( value: { a!richTextIcon(icon: "calendar-o", color: "SECONDARY"), })
2nd interface which formats the date AB_formatdate
In the main interface, for one of the field I used both the interfece( my requirement is displaying the calender icon and the formatted date)
rule!FST_c_readOnlyFieldDisplay( fieldName: "t Date", value: { rule!FST_c_dateWithIcon() & rule!FST_exp_formatDate( datetime: ri!record[], showtime: false ),
But the value is not getting displayed, instead the below is displayed.
Can someone please help here
Discussion posts and replies are publicly visible
I think you are trying to show a richTextDisplayField in a textField.
What is the use of FST_c_readOnlyFieldDisplay()
it has the richtextdisplayfield to display the label and the value
I need a calender icon to be present in front of the date. How to do that
You have made it soo much complex.
Is this what you want?
I am re-using it many places, hence used the interface for that.