@Questions,
does it render correctly on other mobile devices?
I guess my question is really: is this a responsive coding issue, or a Marketo LP issue.
Cheers
Jo
@Amey_Shivapurka,
you probably need to wrap the whole thing in something like
#if( ! $display.alt($AssetList ,"").isEmpty() )
Which gives you
#if( ! $display.alt($AssetList ,""...
Yep - it feels like a maybe user permissions need to be looked at.
To your point, If someone wanted to build it manually they could get the list of programs, test for created (or ...
OK... so it needs to be something like this:
#set( $interestingItems = [] )
#foreach( $item in $AssetList )
#if( $item.Type__c.equals("Registration") )
#set( $void = $intere...
It goes further than that... Amey only wants the registration with the greatest date.
The loop has an if to only display registration types, but no constraint on date.