Bug #10211
The order of states when clicking the tristate checkbox is wrong initially
Status:
New
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
04/20/2022
Due date:
% Done:
0%
Estimated time:
Description
I create a tristate checkbox as follows:
auto cb = std::make_unique<Wt::WCheckBox>();
cb->setPartialStateSelectable(true);
The first clicks change the state in the order
Unchecked -> Checked -> PartiallyChecked
only then is the order correct
Unchecked -> PartiallyChecked -> Checked
No data to display