Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi.
I need to add columns with checkboxes for my wizard.
Wizard tree:
tree.setRowBasedObjectHandle(true);
ColumnConfig in ComponentBuilder:
ColumnConfig paperConfig = factory.newColumnConfig("columnId", false);
paperConfig.setComponentMode(ComponentMode.EDIT);
paperConfig.setDataUtilityId("myCheckboxDataUtility");
tree.addComponent(paperConfig);
GuiComponent in DataUtility:
AttributeGuiComponent guiComponent = new BooleanInputComponent();
((BooleanInputComponent) guiComponent).setStyle(BooleanInputComponent.Style.CHECKBOX);
Then i try to get data in FormProcessor, but ObjectBean.getChecked() method returns map with null key and null element in the list only.
Can anyone say where is an error or offer another solution?
Thanks.
Hi ,
Try to use this class "com.ptc.core.components.rendering.guicomponents.CheckBox"
Thanks,
Kaushik
no difference
BooleanInputComponent.Style.RADIOBUTTON and ObjectBean.getRadio() works.
BooleanInputComponent.Style.COMBOBOX and ObjectBean.getComboBox() works.
BooleanInputComponent.Style.CHECKBOX and ObjectBean.getChecked() does not work.
Why?
