Hello, we are trying see which checkboxes from a list of checkboxes were selected, and then save each selection as an entry into the database. The javascript code we are using is
Appery("mobilecheckboxgroup_11").find("input:checked").each(function(){
sharing_add.execute({data: {"collName":"users", "id":$(this).val()}});
});
The parameter we are getting from the checkbox and saving into the database (along with other information) is a pointer to the users table (in the form of their user id).
We are getting a 400 response when we submit as "Creation and modification objects with system fields not allowed."
We've checked some other responses such as getsatisfaction.com/apperyio/topics/variable_create_service_with_checkbox, but this is not working (we think it might be different because the parameter we are working with is a pointer in the database). Please let us know. Thanks!