We are using syncedOptions in an editable tables, to have synced dropdowns
This is working as expected.
Now we added valueMapping for one of the columns and if the user now enters the edit mode of the editable table the values of the depended dropdown column get lost.
Is syncedOptions still the way to go or is it possible to sync dropdown values in another way since the syncset rework?
Thank you in advance
Code valueOptions:
“valueOptions”: [
{
“column”: “providing_cost_center_id”,
“source”: “project_fte_forecast_add_qualification_datasource”,
“valueColumn”: “cost_center_id”,
“labelColumn”: “cost_center_name”,
“allowNewValues”: false,
“syncSets”: []
},
{
“column”: “qualification_name”,
“source”: “project_fte_forecast_add_qualification_datasource”,
“valueColumn”: “qualification_name”,
“allowNewValues”: false,
“syncSets”: [],
“syncedOptions”: [
{
“sourceColumn”: “providing_cost_center_id”,
“targetColumn”: “cost_center_id”
}
]
}
]
Code valueMapping:
“valueMapping”: [
{
“column”: “providing_cost_center_id”,
“source”: “project_fte_forecast_add_qualification_reduced_datasource”,
“joinColumn”: “cost_center_id”,
“targetColumn”: “cost_center_name”
}
]