I'm trying to create a conditional operator, once it's triggered a status from Section A it will affect the status on Section B
Algo:
[This algo was based on a drop down functionality. Once you've select a status on the list, it will update the other]
if (SectionA.status == "Proposal Started" )
{
SectionB.status = "Lead";
} else if (SectionA.status == "Negotiation" )
{
SectionB.status = "Oppurtunity";
}
Thanks Guys!
Algo:
[This algo was based on a drop down functionality. Once you've select a status on the list, it will update the other]
if (SectionA.status == "Proposal Started" )
{
SectionB.status = "Lead";
} else if (SectionA.status == "Negotiation" )
{
SectionB.status = "Oppurtunity";
}
Thanks Guys!
Comment