In Content workspace as part of customisation, We need to populate values in data multiselect cce widget based on value of another attribute.
Value list to be populated in data multiselect cce is received from ajax request.
We were able to populate values in 8.1 using
"widget.fromStore.loadData(fromData);
widget.toStore.loadData(toData); "
But in 8.5 values are not getting populated. Tried in few ways by setting values but in vain.
widget.fromStore = fromData; // fromData - Array object containing the list of values to be displayed under available window of data multiselect cce widget
widget.toStore = toData; // toData - Array object containing the list of values to be displayed under selected window of data multiselect cce widget
widget.initialConfig.store.load();
widget.store.load();
Kindly provide us help in achieving solution to the above problem.