Skip to main content

The VertiGIS Community has been moved to the VertiGIS Support Center >>

Recommendation for non-required numeric fields in form

Comments

1 comment

  • Alex St. John

    Think I found successful logic. 

    In Create Features, I use this ternary to check the NumberRef for null.

    If null, pass null to the feature. If not null, pass the numeric value to the feature.

    ($form1.state.number4.value == null ? null : $form1.state.number4.value.numeric)

    0