Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

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 Checked.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);

Thx.