create json objects in collection

Hi Omer,

I’ll try to explain again better. The links you sent are the non-code way to manage data, which I am familiar with, and I’ve already manipulated the field string with code as you suggest and rebuilt it into an object.

My goal is this:

Given an field in a collection, how can I read it into a table as if it is a key:value object?

For example if I have a text field with a string “color:red,width:10m,height:20m”, how can I read that into a table that directly reads the data into rows that say “color” “width” and “height” and values of those rows that say “red”, “10m” and “20m” ?

If I manipulate the string as a string which I parse, as you say and as I’ve already done, then it means that every time the page loads, this manipulation happens all over again, which means that if I have 100 fields this will be a very slow and inefficient way to process data… do you understand my meaning?