I am using scheduler as follows:
From a dropdown(react-select), I choose a name (whose events I have to show on the scheduler) and it shows correctly,
nextState.showData is an array of data.
window.scheduler.parse(nextState.showData, 'json')
but when I deselect the same name, the scheduler should update and show me no events, but the scheduler does not update(and still shows the event for the name which is now deselected)
Although, on deselect of the name, nextState.showData=[]
.
Please help. I am using dhtmlx-scheduler with React........