Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

If ... else.... help!

Avatar

Level 2
I have a field that if it is empty, needs to be filled, but if it has data, I need that data to be left as is...



I know how to write the if and have it fill in the info I need, however, what do I put for the else?



So far I have



var iVar=0;

if ((ECR_Nmr.rawValue==null){

xfa.sourceSet.ECP_ECR.last()

iVar=1

}

else

***and this is where I get lost... if it is already filled in, I need it to leave whatever is here alone***

}



Thanks! Jenn D.
2 Replies

Avatar

Former Community Member
so if it is already filled and you want to do nothig then do not have an else section.

Avatar

Level 2
oh! Now how simple is that?!! Thank you!



Jenn D.