Solved

Checkbox outcome text change

  • 3 August 2022
  • 4 replies
  • 113 views

Hello

 

I'm attempting to modify a CheckBox field's label in a list view

Is there a way i can change the checkbox outcome text from True or False to Yes or No on a ListView through the use of an expression or someway similar ?

 

icon

Best answer by ernie_hayter 3 August 2022, 15:43

View original

4 replies

Userlevel 5
Badge +13
Yes, you would need to add another column to display the expression that is based on this checkbox value
Userlevel 2
Badge +6

Hey @SmithRow ,


 


What I tend to do is to create a separate SmartObject that has one property called Lookup which is of type boolean as the ID and then a Value property that is type text.


 


I then populate the SmO with Lookup= true  Value= Yes, Lookup=false Value=No.


 


I then create an Association to the Lookup SmartObject on the List View SmartObject column you want to display differently, and map the value of the resulting List Display to the Lookup property of the Lookup SmO, and the Display value is then your Value column.


 


I hope this makes sense? Let me know, otherwise I can send you some screenshots.


 


Cheers,


Ernie 

thank you , this also worked
Thank you , i understood it well and it works perfectly.

Reply