Error when acess object property with RunActions()

Hello everyone.

I am facing some problems when trying to acess property of a custom object inside the RunActions() formula.

Context: I made a pack that return an object with several properties (defined in a schema). With these values I want to setup several controlValues, and for that I am trying to use RunActions().

The schema is this one:

const ProjectSchema = coda.makeObjectSchema({
properties: {
name: { type: coda.ValueType.String},
ctpName: {type: coda.ValueType.String},
ctpEmail: {type: coda.ValueType.String},
status : { type: coda.ValueType.String, codaType: coda.ValueHintType.SelectList},
mainCompany: {type: coda.ValueType.String},
partnerCompany: {type: coda.ValueType.Array, items: {type: coda.ValueType.String, codaType: coda.ValueHintType.SelectList}},
promotion: {type: coda.ValueType.String}
},
displayProperty: ‘name’,
});

And if the button formula is this, the control is set:
image

But, if I wrap the SetControlValue() in a RunActions, the action return a error that the “Name” property could not be found.

image

A working around is to return the object as a string and access the properties with parseJSON formula, but it would be better if I can access directly.

Am I doing something wrong?

Thank you everyone

1 Like

Thanks for reaching out to let us know about this issue. This sounds like it might be a bug based on the information you’ve provided. That said, I would recommend reaching out to the Coda Support team by clicking the ? in the bottom right corner of your Coda screen and submitting a bug report with this information. We look forward to hearing from you.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.