Editor changes are not sent back to the controller php
Editor changes are not sent back to the controller php
I have an editor connected to mysql with multiple fields.
The json data is nicely loaded and correctly mapped, but when i change a SELECT box or edit an simple text field, the JSON posted is just the same as the original JSON that was received.
The incoming JSON data:
{
"klacht_nr": 52,
"klacht_soort_id": 2,
"klacht_status_id": 1,
"klantnummer": "K073250"
}
and if i change the klantnummer field (text field) to K0732500000 the output json file is:
{
"klacht_nr": 52,
"klacht_soort_id": 2,
"klacht_status_id": 1,
"klantnummer": "K073250"
}
Is this just a setting i'm missing, or would this be a more fundamental issue?
The Javascript Console doesn't show any issues, and the JSON is nicely sent out, but the updated information is not being sent.
Ideas?
Answers
Can you show me your Editor and DataTables initialisation and any event handlers you might be using with it please?
Thanks,
Allan
Here is it in full: (I will try to create a smaller setup with 2-3 fields)
There is nothing obvious there unfortunately. Are you able to PM me a link to the page in question so I can trace through it?
Thanks,
Allan