cancel
Showing results for 
Search instead for 
Did you mean: 

Fiori/SAPUI5: setting value of checkbox through code (WEBIDE)

ioan_radulescu2
Participant

Hi Experts,

I am implementing a similar behaviour to radio buttons using checkboxes (

sap.m.CheckBox

). I'm using checkboxes because the customer prefers it. Unfortunately I can't seem to find a way to set the checkbox value programmatically. I tried setting the attribute in a loop but it's probably a read only attribute - it didn't get taken into account.

Is it at all possible? a function setSelected is not available according to documentation here https://sapui5.netweaver.ondemand.com/#docs/api/symbols/sap.m.CheckBox.html

Thanks,

Ioan.

Accepted Solutions (1)

Accepted Solutions (1)

Hello Loan,

setSelected() is working.

this.getView().byId("checkBoxId").setSelected(true);
,

Hello Radulescu,

Though, setSelected() is not seen to be available, it works.

this.getView().byId("checkBoxId").setSelected(true);

i tried the above code.

Answers (1)

Answers (1)

ioan_radulescu2
Participant
0 Kudos

yeah thanks, I had found out that too :). Out of sheer hopelessness I had tried that and it worked, even though documentation is not mentioning it.