Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Driving conditional content in the absence of a field

Avatar

Level 1

Hi everyone,

I'm currently working with a transactional eDM using SOAP UI for testing. This particular eDM has three pieces of content which are supposed to render under certain circumstances.

The fields which are driving this, however, only have one value and if this value is not passed via the API, then the fields aren't passed at all.

What I've been attempting to do is write conditional statements to drive the content of the email by checking if the field is present. eg.

<% if (rtEvent.ctx.FIELDNAME1 == undefined || rtEvent.ctx.FIELDNAME2 == undefined || rtEvent.ctx.FIELDNAME3 == undefined) { %>

CONTENT 

I was testing this by removing the particular fields from the SOAP event to see if this simulated the field not being passed, however I'm unsure if this is the correct thing to do or not.

Using 'undefined' doesn't appear to work. I have tried 'null' as well.

Does anyone know whether what I'm attempting is possible? Is this the correct way / syntax to check for the absence of a field?

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello Michael,
Try this

if (typeof rtEvent.ctx.FIELDNAME1  === "undefined"){

CONTENT HERE

}

 

OR

if(rtEvent.ctx.FIELDNAME1){

CONTENT HERE

}

 

Let me know if that helps.

 


     Manoj
     Find me on LinkedIn

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hello Michael,
Try this

if (typeof rtEvent.ctx.FIELDNAME1  === "undefined"){

CONTENT HERE

}

 

OR

if(rtEvent.ctx.FIELDNAME1){

CONTENT HERE

}

 

Let me know if that helps.

 


     Manoj
     Find me on LinkedIn