I didn't see any errors pertaining to this in the console but I did get this notification when logging in:
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
As far as I know I have the success event calling properly because some of the code in that event fires correctly and the service itself achieves success. This is the whole code in the event.
Appery("job_cat_select").val("").selectmenu('refresh');
Appery("task_select").val("").selectmenu('refresh');
Appery("name_input").val("");
Appery("details_input").val("");
$('[dsid="radio_active"]').find('input').prop("checked", true).checkboxradio("refresh");
$('[dsid="radio_dis"]').find('input').prop("checked", false).checkboxradio("refresh");
I changed up the code to reset the select menus and I still get the same issue, however, I should clarify. This is on the success of a create service. The service is invoked by a button on a page that remains visible to allow users to enter more records, and the select menus do not affect each other. The select menus initialize showing the proper default values, then on the first success the option selected changes to the first options with a value, and finally on the second and all subsequent successes the select menus properly change to the desired default values (option with labels and no value).
Is this a bug?