Skip to content
Snippets Groups Projects
Commit c18cd2af authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #866 from kurund/CRM-12673

applied patch for CRM-12673
parents af04e7c5 48739ceb
Branches
Tags
No related merge requests found
......@@ -473,6 +473,14 @@ function checkSelected( ) {
}
function submitAjaxData() {
var total_checked = new Array();
cj.each(contact_checked, function (index, value) {
if (typeof value !== "undefined") {
total_checked.push(value);
}
});
contact_checked = total_checked;
cj('#store_contacts').val( contact_checked.toString() );
if ( useEmployer ) {
cj('#store_employers').val( employer_checked.toString() );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment