I can´t get it to work with mongo. When I try creating, editing, saving events I get an alert box saying: Not supported operation.
Pleas suggest me how to fix this issue
Here i have attached my index.html, app.js files for your reference and let me know in case if you need any other details from my side.
scheduler-node.zip (1.64 KB)
Hi,
the error happens in this method github.com/DHTMLX/node-schedule … app.js#L52 because the code can’t obtain ‘!nativeeditor_status’ parameter from the post body.
I think it happens because you’ve specified json body-parser for your app:
app.use(bodyParser.json());
you need to use urlencoded parser for dataprocessor requests:
app.use('/data', bodyParser.urlencoded({
extended: true
}));