Hello,
First of all, sorry if there is a topic, I searched and did not find one.
Here is my problem:
I have created a Monday application in javascript and I am using monday-sdk-js to communicate with the Monday API.
On my application, I have a board view with parameters to configure. I have a “columns” field to choose the fields to display on my view and a “column” field that has nothing to do with the other field.
When I use monday-sdk-js to retrieve the parameters from my application, I get the data without any problem:
{
"columnsToDisplay": {
"all": false,
"name": false,
"person": true,
"status": false,
"date": true,
"date4": false,
"statut_11": false
},
"columnDate": {
"date": true
}
}
As you can see from the API return and the image, the data is not consistent, only the person field should be true for columnsToDisplay but the other column field, columnDate, acts on the first one.
Is this behavior intended? Is there a way to work around it?
Thanks in advance for your help!
Sincerely,
Théo Vauvilliers