I am trying to configure a checkbox to have an intermediate state. From reading the documentation, this sounded like an easy task. I have read through the forums and not found anything about it either (probably because it really is easy, and I am missing something). I found this post (Indeterminate checkboxes), but it seems to predate what is currently built into anvil.
I have tried programmatically creating the checkbox and using the gui editor to set the allow_intermediate property to True.
Code Sample:
self.check_box_1.allow_indeterminate = True
self.check_box_1.checked = None
Any help would be appreciated. I could find another solution to what I am working on, but this would be the most elegant.