theapache64
06/22/2021, 7:33 AMchecked(false)
to uncheck a radio/checkbox. now that checked(Boolean)
has removed in 0.5.0-build225
, so what's the recommended method to uncheck a radio/checkbox?theapache64
06/22/2021, 7:35 AMdisable
call?Oleksandr Karpovich [JB]
06/22/2021, 7:37 AMif (shouldCheck) checked()
if (shouldDisable) disabled()
the previous checked(Boolean)
was not correct, because when the passed value was false
it was just ignored internally. And that might be confusing.theapache64
06/22/2021, 7:38 AM