Properties panel + selectBox (solved)

Hi all, I’m trying to do a properties panel with a checkBox element.
The actual properties panel has a textBox, I want to change it for a checkBox.

Could you tell me any steps to do that?

Thanks for all!

It seems like you we’re able to solve this issue. That’s great! It would be nice if you could share how you we’re able to solve it!

Best,
Philipp

Sure, this is my solution:

 group.entries.push(entryFactory.checkbox({
      id : 'example',
      description : 'example desc,
      label : 'example',
      options:[],
      modelProperty : 'example'
    }));
1 Like