I have a BoolColumn field placed as a checkbox on my screen. When I leave the text-property empty it displays "True,False" next to the checkbox. Is there a way to surpress that text? I tried:
this.checkbox.text = ""
this.checkbox.text = " "
this.checkbox.text = null
If I enter a text:
this.checkbox.text = "Example"
it will display this this text next to the checkbox. So why is an empty text-property overruled by the default input-ranges of a BoolColumn.
I started with using a type from my application which had an input range of "Yes,No", which was displayed when I left the text-property empty, but removing that range set the text back to "True,False".