Lightswitch Choice List changer based other column condition

57 Views Asked by At

I have a table called Members on my Lightswitch application. My Member Table and it's Columns

I want to add a choice list for MemberType (String) that be related to my isAEDSMember (boolean) column.

isAEDSMember (Boolean)
if(isAEDSMember == true){
myChoiceList {1,2,3,4}
}else{
myChoiceList {3,4}
}

I think it's possible only with c# code. currently i don't have any idea about the method and syntax of making this option.

0

There are 0 best solutions below