Skip to content
Snippets Groups Projects
Commit a0a0f1df authored by totten's avatar totten
Browse files

CRM-13163 - crm.backbone.js - Pass 'options.reload=1' when creating/updating records

----------------------------------------
* CRM-13163: hrjob: Display/edit dates with jQuery date picker
  http://issues.civicrm.org/jira/browse/CRM-13163
parent ac830223
No related branches found
No related tags found
No related merge requests found
......@@ -70,10 +70,13 @@
switch (method) {
case 'create': // pass-through
case 'update':
var params = model.toJSON();
params.options || (params.options = {});
params.options.reload = 1;
if (!model._isDuplicate) {
CRM.api(model.crmEntityName, 'create', model.toJSON(), apiOptions);
CRM.api(model.crmEntityName, 'create', params, apiOptions);
} else {
CRM.api(model.crmEntityName, 'duplicate', model.toJSON(), apiOptions);
CRM.api(model.crmEntityName, 'duplicate', params, apiOptions);
}
break;
case 'read':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment