identical ui-only formula fields - one works, one doesn't.

These two fields:

<field id="password_check" uionly="true" displaytype="FORMULA" label="Verification" readonly returntype="BOOLEAN" defaultvalue="false">
  <formula>{{{password}}}=={{{PIN__c}}}</formula>
{{{email}}}=={{{Support_Email__c}}}

which reference these field pairs:



The password_check field works prefectly, but the email_check field never makes it into the model (no matter what I try)!

Why would that be happening?

Matt,

I think that this is addressed in the next release of Skuid (Banzai Update 3), but if you want to try something in the meantime, try surrounding those email fields with single quotes:

<formula>'{{{email}}}'=='{{{Support_Email__c}}}'</formula>

Thanks, J.


If I wrap with single quotes now, will I have to unwrap after update 3?

I don’t think so. You should be good either way after Update 3.

great. Thanks!