Assigning Select Boxes from Forms Builder to variables

Hi all,

I have been working with the Forms Builder recently, but have been having issues with assigning the outputs of the Select Boxes forms activity.

The output string is:

“{"title":"Mr.","firstName":"A.","surname":"Test","selectBoxes1":{"laptop":true,"screen":true,"mouse":false,"keyboard":false,"headset":false},"submit":true}”

After deserializing, the JObject is:

JObject(5) { JProperty(1) { [Mr.] }, JProperty(1) { [A.] }, JProperty(1) { [Test] }, JProperty(1) { JObject(5) { JProperty(1) { [True] }, JProperty(1) { [True] }, JProperty(1) { [False] }, JProperty(1) { [False] }, JProperty(1) { [False] } } }, JProperty(1) { [True] } }

I can reference the first set of properties (title, firstName, surname) with no problems, but not those in the nested selectBoxes1. Is this a separate JObject, and how would I assign those properties to boolean variables?

TIA!

Figured it out, you need to deserialize the nested JObject exactly the same way as the first - then you can assist the properties with no problems.