cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to implement the checkbox event for List

Former Member
0 Kudos

I have the list of items.On the selection of list item i need to open the pop up.On unchecked i need to do something else.How can i do?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Deepthi,

Yes this is possible.

Here is an example on checkbox:

checked : true,

change : function() {if(oCB.getChecked()){alert('YES')}else{alert('NO')};}

Refer to the link below for more information:

CheckBox - SAPUI5 Demo Kit

See the examples on the link.

Regards,

Ashvin

Former Member
0 Kudos