Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Dear Support,
When i am using a checkboxes and code was ran. I would like to see a checked checkbox, not a empty checkbox by default.
How can i set the checkbox setSelected(true)?
I used this code:
FormRowSet f = new FormRowSet();
f.setMultiRow(true);
FormRow r1 = new FormRow(); r1.put(FormUtil.PROPERTY_VALUE, "OK"); r1.put(FormUtil.PROPERTY_LABEL, "OK"); f.add(r1);
FormRow r1 = new FormRow();
r1.put(FormUtil.PROPERTY_VALUE, "OK");
r1.put(FormUtil.PROPERTY_LABEL, "OK");
f.add(r1);
Thx.