Metadata Schema Editor, checkbox field? | Community
Skip to main content
Level 2
July 8, 2016

Metadata Schema Editor, checkbox field?

  • July 8, 2016
  • 2 replies
  • 4022 views

Hi all. In 6.2 ootb there is no Checkbox field available in the Metadata Schema Editor. However upon closer inspection, file /libs/dam/gui/coral/components/admin/schemaforms/formbuilder/builditems.jsp has it commented out. If I overlay this file and uncomment, it becomes available, and seems to function, but upon further testing, is not functional, as values do not save out properly to JCR.

Anyone know what's up with this? Is this going to be addressed soon? Seems a little weird that this basic field missed the cut in an otherwise well thought-out editor. Is it up to the implementer to fix this?! Any advice appreciated.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Lokesh_Shivalingaiah
Level 10
July 10, 2016

Thats defn looks strange !! Can you please raise a support ticket for the same ?

Level 2
July 10, 2016

Thanks for your reply. I don't have Daycare access though so I can't raise a ticket. Hoping to get support in this forum...

Lokesh_Shivalingaiah
Level 10
July 10, 2016

Sure.. Lets me see if I can get some help from the team.

Level 2
October 17, 2023

To make it work:

  1. Overlay /libs/dam/gui/coral/components/admin/metadataeditor/clientlibs/metadataeditor/js/form.js
  2. In form.js replace the following in line #514 if($checkbox.is(":checked")){ with if(checkbox.hasAttribute("checked")){
  3. Test it again. Now you can see the checkbox is selected.