Hello!
I am currently trying to get data from custom columns in a table to use in a bulk update, I have the following table:
to quickly select the colums. Now I want to use the save button in order to execute a bulk-update, the issue is that I have stored this in a column in my DB as a JSON string in the following form
{
role: "premium", /* OR: "normal" */
pages: {
dashboard: "full", /* OR: "partial" OR: "none" */
members: "full", /* OR: "partial" OR: "none" */
activities: "full", /* OR: "partial" OR: "none" */
campaigns: "full", /* OR: "partial" OR: "none" */
media: "full", /* OR: "partial" OR: "none" */
changelog: "full", /* OR: "partial" OR: "none" */
administration: "full", /* OR: "partial" OR: "none" */
}}
now I need to put the JSON string back together with whatever I enter in my custom columns. I haven't yet found a way to access the data, can anyone help me?
Thank you in advance !

