I can see that it is delimited using commas and semicolons (side note: would be way better to use JSON or some format that allows for commas/semicolons to exist in the values without breaking the format). Seems easy enough to parse, but since you are parsing it to display in the workflow designer, I thought you might have exposed the parsing method publicly.
In the upcoming version 4 release of Contour we are storing json for these complex field setting types which makes it a lot easier to work with and parse deserialize.
In the version you are using it isn't json but just a custom string delimited with , and ; so not that friendly to parse
Parse/Deserialize FieldSetting.FieldMapper Property Value?
Is there some public way of parsing the value stored in a property like this (from a WorkflowType I'm making):
Here's an example value:
I can see that it is delimited using commas and semicolons (side note: would be way better to use JSON or some format that allows for commas/semicolons to exist in the values without breaking the format). Seems easy enough to parse, but since you are parsing it to display in the workflow designer, I thought you might have exposed the parsing method publicly.
Comment author was deleted
Hey Nicholas,
In the upcoming version 4 release of Contour we are storing json for these complex field setting types which makes it a lot easier to work with and parse deserialize.
In the version you are using it isn't json but just a custom string delimited with , and ; so not that friendly to parse
is working on a reply...