Is it possible to access Page Fields in data bindings?

Hi Jason,

Ah yes! Apologies. You can bind to any custom field using context.builderContent

For example, if you have a custom field called title, you’ll need to bind to context.builderContent.data.title

So you can set state.someTitle = context.builderContent.data.title

Basically, within custom JS I would recommend either setting the value to state by putting:

state.whatever = context.builderContent.data.whatever

Or, in your databinding you can access directly with

context.builderContent.data.whatever