1 // https://civicrm.org/licensing
3 var cj
= CRM
.$ = jQuery
;
7 * Short-named function for string translation, defined in global scope so it's available everywhere.
9 * @param text string for translating
10 * @param params object key:value of additional parameters
14 function ts(text
, params
) {
16 text
= CRM
.strings
[text
] || text
;
17 if (typeof(params
) === 'object') {
18 for (var i
in params
) {
19 if (typeof(params
[i
]) === 'string' || typeof(params
[i
]) === 'number') {
20 // sprintf emulation: escape % characters in the replacements to avoid conflicts
21 text
= text
.replace(new RegExp('%' + i
, 'g'), String(params
[i
]).replace(/%/g
, '%-crmescaped-'));
24 return text
.replace(/%-crmescaped-/g, '%');
30 * This function is called by default at the bottom of template files which have forms that have
31 * conditionally displayed/hidden sections and elements. The PHP is responsible for generating
32 * a list of 'blocks to show' and 'blocks to hide' and the template passes these parameters to
36 * @param showBlocks Array of element Id's to be displayed
37 * @param hideBlocks Array of element Id's to be hidden
38 * @param elementType Value to set display style to for showBlocks (e.g. 'block' or 'table-row' or ...)
40 function on_load_init_blocks(showBlocks
, hideBlocks
, elementType
) {
41 if (elementType
== null) {
42 var elementType
= 'block';
45 /* This loop is used to display the blocks whose IDs are present within the showBlocks array */
46 for (var i
= 0; i
< showBlocks
.length
; i
++) {
47 var myElement
= document
.getElementById(showBlocks
[i
]);
48 /* getElementById returns null if element id doesn't exist in the document */
49 if (myElement
!= null) {
50 myElement
.style
.display
= elementType
;
53 alert('showBlocks array item not in .tpl = ' + showBlocks
[i
]);
57 /* This loop is used to hide the blocks whose IDs are present within the hideBlocks array */
58 for (var i
= 0; i
< hideBlocks
.length
; i
++) {
59 var myElement
= document
.getElementById(hideBlocks
[i
]);
60 /* getElementById returns null if element id doesn't exist in the document */
61 if (myElement
!= null) {
62 myElement
.style
.display
= 'none';
65 alert('showBlocks array item not in .tpl = ' + hideBlocks
[i
]);
71 * This function is called when we need to show or hide a related form element (target_element)
72 * based on the value (trigger_value) of another form field (trigger_field).
75 * @param trigger_field_id HTML id of field whose onchange is the trigger
76 * @param trigger_value List of integers - option value(s) which trigger show-element action for target_field
77 * @param target_element_id HTML id of element to be shown or hidden
78 * @param target_element_type Type of element to be shown or hidden ('block' or 'table-row')
79 * @param field_type Type of element radio/select
80 * @param invert Boolean - if true, we HIDE target on value match; if false, we SHOW target on value match
82 function showHideByValue(trigger_field_id
, trigger_value
, target_element_id
, target_element_type
, field_type
, invert
) {
83 if (target_element_type
== null) {
84 var target_element_type
= 'block';
87 if (target_element_type
== 'table-row') {
88 var target_element_type
= '';
92 if (field_type
== 'select') {
93 var trigger
= trigger_value
.split("|");
94 var selectedOptionValue
= cj('#' + trigger_field_id
).val();
96 var target
= target_element_id
.split("|");
97 for (var j
= 0; j
< target
.length
; j
++) {
99 cj('#' + target
[j
]).show();
102 cj('#' + target
[j
]).hide();
104 for (var i
= 0; i
< trigger
.length
; i
++) {
105 if (selectedOptionValue
== trigger
[i
]) {
107 cj('#' + target
[j
]).hide();
110 cj('#' + target
[j
]).show();
118 if (field_type
== 'radio') {
119 var target
= target_element_id
.split("|");
120 for (var j
= 0; j
< target
.length
; j
++) {
121 if (cj('[name="' + trigger_field_id
+ '"]:first').is(':checked')) {
123 cj('#' + target
[j
]).hide();
126 cj('#' + target
[j
]).show();
131 cj('#' + target
[j
]).show();
134 cj('#' + target
[j
]).hide();
143 * Function to change button text and disable one it is clicked
145 * @param obj object - the button clicked
146 * @param formID string - the id of the form being submitted
147 * @param string procText - button text after user clicks it
151 /* Changes button label on submit, and disables button after submit for newer browsers.
152 Puts up alert for older browsers. */
153 function submitOnce(obj
, formId
, procText
) {
154 // if named button clicked, change text
155 if (obj
.value
!= null) {
156 obj
.value
= procText
+ " ...";
158 if (document
.getElementById
) { // disable submit button for newer browsers
160 document
.getElementById(formId
).submit();
163 else { // for older browsers
164 if (submitcount
== 0) {
169 alert("Your request is currently being processed ... Please wait.");
176 * Function to show / hide the row in optionFields
178 * @param index string, element whose innerHTML is to hide else will show the hidden row.
180 function showHideRow(index
) {
182 cj('tr#optionField_' + index
).hide();
183 if (cj('table#optionField tr:hidden:first').length
) {
184 cj('div#optionFieldLink').show();
188 cj('table#optionField tr:hidden:first').show();
189 if (!cj('table#optionField tr:hidden:last').length
) {
190 cj('div#optionFieldLink').hide();
196 CRM
.utils
= CRM
.utils
|| {};
197 CRM
.strings
= CRM
.strings
|| {};
199 (function ($, _
, undefined) {
202 // Theme classes for unattached elements
203 $.fn
.select2
.defaults
.dropdownCssClass
= $.ui
.dialog
.prototype.options
.dialogClass
= 'crm-container';
205 // https://github.com/ivaynberg/select2/pull/2090
206 $.fn
.select2
.defaults
.width
= 'resolve';
208 // Workaround for https://github.com/ivaynberg/select2/issues/1246
209 $.ui
.dialog
.prototype._allowInteraction = function(e
) {
210 return !!$(e
.target
).closest('.ui-dialog, .ui-datepicker, .select2-drop').length
;
214 * Populate a select list, overwriting the existing options except for the placeholder.
215 * @param $el jquery collection - 1 or more select elements
216 * @param options array in format returned by api.getoptions
217 * @param removePlaceholder bool
219 CRM
.utils
.setOptions = function($el
, options
, removePlaceholder
) {
220 $el
.each(function() {
223 val
= $elect
.val() || [],
224 opts
= removePlaceholder
? '' : '[value!=""]';
225 if (!$.isArray(val
)) {
228 $elect
.find('option' + opts
).remove();
229 _
.each(options
, function(option
) {
230 var selected
= ($.inArray(''+option
.key
, val
) > -1) ? 'selected="selected"' : '';
231 $elect
.append('<option value="' + option
.key
+ '"' + selected
+ '>' + option
.value
+ '</option>');
233 $elect
.trigger('crmOptionsUpdated', $.extend({}, options
)).trigger('change');
238 * Compare Form Input values against cached initial value.
240 * @return {Boolean} true if changes have been made.
242 CRM
.utils
.initialValueChanged = function(el
) {
244 $(':input:visible, .select2-container:visible+:input.select2-offscreen', el
).not('[type=submit], [type=button], .crm-action-menu').each(function () {
245 var initialValue
= $(this).data('crm-initial-value');
246 // skip change of value for submit buttons
247 if (initialValue
!== undefined && !_
.isEqual(initialValue
, $(this).val())) {
255 * Wrapper for select2 initialization function; supplies defaults
256 * @param options object
258 $.fn
.crmSelect2 = function(options
) {
259 return $(this).each(function () {
262 settings
= {allowClear
: !$el
.hasClass('required')};
263 // quickform doesn't support optgroups so here's a hack :(
264 $('option[value^=crm_optgroup]', this).each(function () {
265 $(this).nextUntil('option[value^=crm_optgroup]').wrapAll('<optgroup label="' + $(this).text() + '" />');
268 // Defaults for single-selects
269 if ($el
.is('select:not([multiple])')) {
270 settings
.minimumResultsForSearch
= 10;
271 if ($('option:first', this).val() === '') {
272 settings
.placeholderOption
= 'first';
275 $.extend(settings
, $el
.data('select-params') || {}, options
|| {});
277 $el
.addClass('crm-ajax-select');
279 $el
.select2(settings
);
284 * @see CRM_Core_Form::addEntityRef for docs
285 * @param options object
287 $.fn
.crmEntityRef = function(options
) {
288 options
= options
|| {};
289 options
.select
= options
.select
|| {};
290 return $(this).each(function() {
292 $el
= $(this).off('.crmEntity'),
293 entity
= options
.entity
|| $el
.data('api-entity') || 'contact',
295 $el
.data('api-entity', entity
);
296 $el
.data('select-params', $.extend({}, $el
.data('select-params') || {}, options
.select
));
297 $el
.data('api-params', $.extend({}, $el
.data('api-params') || {}, options
.api
));
298 $el
.data('create-links', options
.create
|| $el
.data('create-links'));
299 $el
.addClass('crm-form-entityref crm-' + entity
+ '-ref');
301 // Use select2 ajax helper instead of CRM.api because it provides more value
303 url
: CRM
.url('civicrm/ajax/rest'),
304 data: function (input
, page_num
) {
305 var params
= $el
.data('api-params') || {};
306 params
.input
= input
;
307 params
.page_num
= page_num
;
309 entity
: $el
.data('api-entity'),
311 json
: JSON
.stringify(params
)
314 results: function(data
) {
315 return {more
: data
.more_results
, results
: data
.values
|| []};
318 minimumInputLength
: 1,
319 formatResult
: CRM
.utils
.formatSelect2Result
,
320 formatSelection: function(row
) {
323 escapeMarkup: function (m
) {return m
;},
324 initSelection: function($el
, callback
) {
326 multiple
= !!$el
.data('select-params').multiple
,
328 stored
= $el
.data('entity-value') || [];
332 // If we already have this data, just return it
333 if (!_
.xor(val
.split(','), _
.pluck(stored
, 'id')).length
) {
334 callback(multiple
? stored
: stored
[0]);
336 var params
= $.extend({}, $el
.data('api-params') || {}, {id
: val
});
337 CRM
.api3($el
.data('api-entity'), 'getlist', params
).done(function(result
) {
338 callback(multiple
? result
.values
: result
.values
[0]);
339 // Trigger change (store data to avoid an infinite loop of lookups)
340 $el
.data('entity-value', result
.values
).trigger('change');
345 if ($el
.data('create-links') && entity
.toLowerCase() === 'contact') {
346 selectParams
.formatInputTooShort = function() {
347 var txt
= $el
.data('select-params').formatInputTooShort
|| $.fn
.select2
.defaults
.formatInputTooShort
.call(this);
348 if ($el
.data('create-links') && CRM
.profileCreate
) {
349 txt
+= ' ' + ts('or') + '<br />' + formatSelect2CreateLinks($el
);
353 selectParams
.formatNoMatches = function() {
354 var txt
= $el
.data('select-params').formatNoMatches
|| $.fn
.select2
.defaults
.formatNoMatches
;
355 return txt
+ (CRM
.profileCreate
? ('<br />' + formatSelect2CreateLinks($el
)) : '');
357 $el
.on('select2-open.crmEntity', function() {
359 $('#select2-drop').off('.crmEntity').on('click.crmEntity', 'a.crm-add-entity', function(e
) {
360 $el
.select2('close');
361 CRM
.loadForm($(this).attr('href'), {
362 dialog
: {width
: 500, height
: 'auto'}
363 }).on('crmFormSuccess', function(e
, data
) {
364 if (data
.status
=== 'success' && data
.id
) {
365 CRM
.status(ts('%1 Created', {1: data
.label
}));
366 if ($el
.select2('container').hasClass('select2-container-multi')) {
367 var selection
= $el
.select2('data');
368 selection
.push(data
);
369 $el
.select2('data', selection
, true);
371 $el
.select2('data', data
, true);
379 // Create new items inline - works for tags
380 else if ($el
.data('create-links')) {
381 selectParams
.createSearchChoice = function(term
, data
) {
382 if (!_
.findKey(data
, {label
: term
})) {
383 return {id
: "0", term
: term
, label
: term
+ ' (' + ts('new tag') + ')'};
386 selectParams
.tokenSeparators
= [','];
387 selectParams
.createSearchChoicePosition
= 'bottom';
389 $el
.crmSelect2($.extend(settings
, $el
.data('select-params'), selectParams
))
390 .on('select2-selecting.crmEntity', function(e
) {
392 e
.object
.label
= e
.object
.term
;
393 CRM
.api3(entity
, 'create', $.extend({name
: e
.object
.term
}, $el
.data('api-params').params
|| {}))
394 .done(function(created
) {
396 multiple
= !!$el
.data('select-params').multiple
,
397 val
= $el
.select2('val'),
398 data
= $el
.select2('data'),
399 item
= {id
: created
.id
, label
: e
.object
.term
};
401 $el
.select2('data', item
, true);
403 else if ($.isArray(val
) && $.inArray("0", val
) > -1) {
404 _
.remove(data
, {id
: "0"});
406 $el
.select2('data', data
, true);
414 CRM
.utils
.formatSelect2Result = function (row
) {
415 var markup
= '<div class="crm-select2-row">';
416 if (row
.image
!== undefined) {
417 markup
+= '<div class="crm-select2-image"><img src="' + row
.image
+ '"/></div>';
419 else if (row
.icon_class
) {
420 markup
+= '<div class="crm-select2-icon"><div class="crm-icon ' + row
.icon_class
+ '-icon"></div></div>';
422 markup
+= '<div><div class="crm-select2-row-label '+(row
.label_class
|| '')+'">' + row
.label
+ '</div>';
423 markup
+= '<div class="crm-select2-row-description">';
424 $.each(row
.description
|| [], function(k
, text
) {
425 markup
+= '<p>' + text
+ '</p>';
427 markup
+= '</div></div></div>';
431 function formatSelect2CreateLinks($el
) {
433 createLinks
= $el
.data('create-links'),
434 api
= $el
.data('api-params') || {},
435 type
= api
.params
? api
.params
.contact_type
: null;
436 if (createLinks
=== true) {
437 createLinks
= type
? _
.where(CRM
.profileCreate
, {type
: type
}) : CRM
.profileCreate
;
440 _
.each(createLinks
, function(link
) {
441 markup
+= ' <a class="crm-add-entity crm-hover-button" href="' + link
.url
+ '">';
443 markup
+= '<span class="icon ' + link
.type
+ '-profile-icon"></span> ';
445 markup
+= link
.label
+ '</a>';
451 * Wrapper for jQuery validate initialization function; supplies defaults
452 * @param options object
454 $.fn
.crmValidate = function(params
) {
455 return $(this).each(function () {
457 settings
= $.extend({}, CRM
.validate
._defaults
, CRM
.validate
.params
);
458 $(this).validate(settings
);
459 // Call any post-initialization callbacks
460 if (CRM
.validate
.functions
&& CRM
.validate
.functions
.length
) {
461 $.each(CRM
.validate
.functions
, function(i
, func
) {
468 // Initialize widgets
470 .on('crmLoad', function(e
) {
471 $('table.row-highlight', e
.target
)
472 .off('.rowHighlight')
473 .on('change.rowHighlight', 'input.select-row, input.select-rows', function (e
, data
) {
474 var filter
, $table
= $(this).closest('table');
475 if ($(this).hasClass('select-rows')) {
476 filter
= $(this).prop('checked') ? ':not(:checked)' : ':checked';
477 $('input.select-row' + filter
, $table
).prop('checked', $(this).prop('checked')).trigger('change', 'master-selected');
480 $(this).closest('tr').toggleClass('crm-row-selected', $(this).prop('checked'));
481 if (data
!== 'master-selected') {
482 $('input.select-rows', $table
).prop('checked', $(".select-row:not(':checked')", $table
).length
< 1);
486 .find('input.select-row:checked').parents('tr').addClass('crm-row-selected');
487 if ($("input:radio[name=radio_ts]").size() == 1) {
488 $("input:radio[name=radio_ts]").prop("checked", true);
490 $('.crm-select2:not(.select2-offscreen, .select2-container)', e
.target
).crmSelect2();
491 $('.crm-form-entityref:not(.select2-offscreen, .select2-container)', e
.target
).crmEntityRef();
492 // Cache Form Input initial values
493 $('form[data-warn-changes] :input', e
.target
).each(function() {
494 $(this).data('crm-initial-value', $(this).val());
497 .on('dialogopen', function(e
) {
498 var $el
= $(e
.target
);
499 // Modal dialogs should disable scrollbars
500 if ($el
.dialog('option', 'modal')) {
501 $el
.addClass('modal-dialog');
502 $('body').css({overflow
: 'hidden'});
504 $el
.parent().find('.ui-dialog-titlebar-close').attr('title', ts('Close'));
506 if ($el
.parent().hasClass('crm-container') && $el
.dialog('option', 'resizable')) {
507 $el
.parent().find('.ui-dialog-titlebar').append($('<button class="crm-dialog-titlebar-resize ui-dialog-titlebar-close" title="'+ts('Toggle fullscreen')+'" style="right:2em;"/>').button({icons
: {primary
: 'ui-icon-newwin'}, text
: false}));
508 $('.crm-dialog-titlebar-resize', $el
.parent()).click(function(e
) {
509 if ($el
.data('origSize')) {
510 $el
.dialog('option', $el
.data('origSize'));
511 $el
.data('origSize', null);
513 $el
.data('origSize', {
514 position
: {my
: 'center', at
: 'center', of: window
},
515 width
: $el
.dialog('option', 'width'),
516 height
: $el
.dialog('option', 'height')
518 var menuHeight
= $('#civicrm-menu').height();
519 $el
.dialog('option', {width
: '100%', height
: ($(window
).height() - menuHeight
), position
: {my
: "top", at
: "top+"+menuHeight
, of: window
}});
525 .on('dialogclose', function(e
) {
526 // Restore scrollbars when closing modal
527 if ($('.ui-dialog .modal-dialog:visible').not(e
.target
).length
< 1) {
528 $('body').css({overflow
: ''});
531 .on('submit', function(e
) {
532 // CRM-14353 - disable changes warn when submitting a form
533 $('[data-warn-changes]').attr('data-warn-changes', 'false');
537 // CRM-14353 - Warn of unsaved changes for forms which have opted in
538 window
.onbeforeunload = function() {
539 if (CRM
.utils
.initialValueChanged($('form[data-warn-changes=true]:visible'))) {
540 return ts('You have unsaved changes.');
545 * Function to make multiselect boxes behave as fields in small screens
547 function advmultiselectResize() {
548 var amswidth
= $("#crm-container form:has(table.advmultiselect)").width();
549 if (amswidth
< 700) {
550 $("form table.advmultiselect td").css('display', 'block');
553 $("form table.advmultiselect td").css('display', 'table-cell');
555 var contactwidth
= $('#crm-container #mainTabContainer').width();
556 if (contactwidth
< 600) {
557 $('#crm-container #mainTabContainer').addClass('narrowpage');
558 $('#crm-container #mainTabContainer.narrowpage #contactTopBar td').each(function (index
) {
560 if (index
% 2 == 0) {
561 $(this).parent().after('<tr class="narrowadded"></tr>');
564 $(this).parent().next().append(item
);
569 $('#crm-container #mainTabContainer.narrowpage').removeClass('narrowpage');
570 $('#crm-container #mainTabContainer #contactTopBar tr.narrowadded td').each(function () {
572 var parent
= $(this).parent();
573 $(this).parent().prev().append(nitem
);
574 if (parent
.children().size() == 0) {
578 $('#crm-container #mainTabContainer.narrowpage #contactTopBar tr.added').detach();
580 var cformwidth
= $('#crm-container #Contact .contact_basic_information-section').width();
582 if (cformwidth
< 720) {
583 $('#crm-container .contact_basic_information-section').addClass('narrowform');
584 $('#crm-container .contact_basic_information-section table.form-layout-compressed td .helpicon').parent().addClass('hashelpicon');
585 if (cformwidth
< 480) {
586 $('#crm-container .contact_basic_information-section').addClass('xnarrowform');
589 $('#crm-container .contact_basic_information-section.xnarrowform').removeClass('xnarrowform');
593 $('#crm-container .contact_basic_information-section.narrowform').removeClass('narrowform');
594 $('#crm-container .contact_basic_information-section.xnarrowform').removeClass('xnarrowform');
598 advmultiselectResize();
599 $(window
).resize(function () {
600 advmultiselectResize();
603 $.fn
.crmtooltip = function () {
605 .on('mouseover', 'a.crm-summary-link:not(.crm-processed)', function (e
) {
606 $(this).addClass('crm-processed');
607 $(this).addClass('crm-tooltip-active');
608 var topDistance
= e
.pageY
- $(window
).scrollTop();
609 if (topDistance
< 300 | topDistance
< $(this).children('.crm-tooltip-wrapper').height()) {
610 $(this).addClass('crm-tooltip-down');
612 if (!$(this).children('.crm-tooltip-wrapper').length
) {
613 $(this).append('<div class="crm-tooltip-wrapper"><div class="crm-tooltip"></div></div>');
614 $(this).children().children('.crm-tooltip')
615 .html('<div class="crm-loading-element"></div>')
619 .on('mouseout', 'a.crm-summary-link', function () {
620 $(this).removeClass('crm-processed');
621 $(this).removeClass('crm-tooltip-active crm-tooltip-down');
623 .on('click', 'a.crm-summary-link', false);
626 var helpDisplay
, helpPrevious
;
627 CRM
.help = function (title
, params
, url
) {
628 if (helpDisplay
&& helpDisplay
.close
) {
629 // If the same link is clicked twice, just close the display - todo use underscore method for this comparison
630 if (helpDisplay
.isOpen
&& helpPrevious
=== JSON
.stringify(params
)) {
636 helpPrevious
= JSON
.stringify(params
);
637 params
.class_name
= 'CRM_Core_Page_Inline_Help';
638 params
.type
= 'page';
639 helpDisplay
= CRM
.alert('...', title
, 'crm-help crm-msg-loading', {expires
: 0});
640 $.ajax(url
|| CRM
.url('civicrm/ajax/inline'),
644 success: function (data
) {
645 $('#crm-notification-container .crm-help .notify-content:last').html(data
);
646 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('info');
649 $('#crm-notification-container .crm-help .notify-content:last').html('Unable to load help file.');
650 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('error');
656 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
658 CRM
.status = function(options
, deferred
) {
659 // For simple usage without async operations you can pass in a string. 2nd param is optional string 'error' if this is not a success msg.
660 if (typeof options
=== 'string') {
661 return CRM
.status({start
: options
, success
: options
, error
: options
})[deferred
=== 'error' ? 'reject' : 'resolve']();
663 var opts
= $.extend({
664 start
: ts('Saving...'),
665 success
: ts('Saved'),
667 CRM
.alert(ts('Sorry an error occurred and your information was not saved'), ts('Error'));
670 var $msg
= $('<div class="crm-status-box-outer status-start"><div class="crm-status-box-inner"><div class="crm-status-box-msg">' + opts
.start
+ '</div></div></div>')
672 $msg
.css('min-width', $msg
.width());
673 function handle(status
, data
) {
674 var endMsg
= typeof(opts
[status
]) === 'function' ? opts
[status
](data
) : opts
[status
];
676 $msg
.removeClass('status-start').addClass('status-' + status
).find('.crm-status-box-msg').html(endMsg
);
677 window
.setTimeout(function() {
678 $msg
.fadeOut('slow', function() {$msg
.remove()});
684 return (deferred
|| new $.Deferred())
685 .done(function(data
) {
686 // If the server returns an error msg call the error handler
687 var status
= $.isPlainObject(data
) && (data
.is_error
|| data
.status
=== 'error') ? 'error' : 'success';
688 handle(status
, data
);
690 .fail(function(data
) {
691 handle('error', data
);
696 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
698 CRM
.alert = function (text
, title
, type
, options
) {
699 type
= type
|| 'alert';
701 options
= options
|| {};
702 if ($('#crm-notification-container').length
) {
708 // By default, don't expire errors and messages containing links
710 expires
: (type
== 'error' || text
.indexOf('<a ') > -1) ? 0 : (text
? 10000 : 5000),
713 options
= $.extend(extra
, options
);
714 options
.expires
= options
.expires
=== false ? 0 : parseInt(options
.expires
, 10);
715 if (options
.unique
&& options
.unique
!== '0') {
716 $('#crm-notification-container .ui-notify-message').each(function () {
717 if (title
=== $('h1', this).html() && text
=== $('.notify-content', this).html()) {
718 $('.icon.ui-notify-close', this).click();
722 return $('#crm-notification-container').notify('create', params
, options
);
726 text
= title
+ "\n" + text
;
734 * Close whichever alert contains the given node
738 CRM
.closeAlertByChild = function (node
) {
739 $(node
).closest('.ui-notify-message').find('.icon.ui-notify-close').click();
743 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
745 CRM
.confirm = function (options
) {
746 var dialog
, settings
= {
747 title
: ts('Confirm'),
748 message
: ts('Are you sure you want to continue?'),
752 dialogClass
: 'crm-container crm-confirm',
754 $(this).dialog('destroy').remove();
761 $.extend(settings
, ($.isFunction(options
) ? arguments
[1] : options
) || {});
762 if (!settings
.buttons
&& $.isPlainObject(settings
.options
)) {
763 settings
.buttons
= [];
764 $.each(settings
.options
, function(key
, label
) {
765 settings
.buttons
.push({
768 var event
= $.Event('crmConfirm:' + key
);
769 $(this).trigger(event
);
770 if (!event
.isDefaultPrevented()) {
771 dialog
.dialog('close');
777 dialog
= $('<div class="crm-confirm-dialog"></div>').html(settings
.message
);
778 delete settings
.options
;
779 delete settings
.message
;
780 if ($.isFunction(options
)) {
781 dialog
.on('crmConfirm:yes', options
);
783 return dialog
.dialog(settings
).trigger('crmLoad');
786 /** provides a local copy of ts for a domain */
787 CRM
.ts = function(domain
) {
788 return function(message
, options
) {
790 options
= $.extend(options
|| {}, {domain
: domain
});
792 return ts(message
, options
);
797 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
799 $.fn
.crmError = function (text
, title
, options
) {
802 options
= options
|| {};
807 if ($(this).length
) {
809 var label
= $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]').not('[generated=true]');
811 label
.addClass('crm-error');
812 var $label
= label
.clone();
813 if (text
== '' && $('.crm-marker', $label
).length
> 0) {
814 text
= $('.crm-marker', $label
).attr('title');
816 $('.crm-marker', $label
).remove();
817 title
= $label
.text();
820 $(this).addClass('error');
822 var msg
= CRM
.alert(text
, title
, 'error', $.extend(extra
, options
));
823 if ($(this).length
) {
825 setTimeout(function () {
826 ele
.one('change', function () {
827 msg
&& msg
.close
&& msg
.close();
828 ele
.removeClass('error');
829 label
.removeClass('crm-error');
836 // Display system alerts through js notifications
837 function messagesFromMarkup() {
838 $('div.messages:visible', this).not('.help').not('.no-popup').each(function () {
839 var text
, title
= '';
840 $(this).removeClass('status messages');
841 var type
= $(this).attr('class').split(' ')[0] || 'alert';
842 type
= type
.replace('crm-', '');
843 $('.icon', this).remove();
844 if ($('.msg-text', this).length
> 0) {
845 text
= $('.msg-text', this).html();
846 title
= $('.msg-title', this).html();
849 text
= $(this).html();
851 var options
= $(this).data('options') || {};
853 // Duplicates were already removed server-side
854 options
.unique
= false;
855 CRM
.alert(text
, title
, type
, options
);
857 // Handle qf form errors
858 $('form :input.error', this).one('blur', function() {
859 $('.ui-notify-message.error a.ui-notify-close').click();
860 $(this).removeClass('error');
861 $(this).next('span.crm-error').remove();
862 $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
863 .removeClass('crm-error')
864 .find('.crm-error').removeClass('crm-error');
868 // Preprocess all cj ajax calls to display messages
869 $(document
).ajaxSuccess(function(event
, xhr
, settings
) {
871 if ((!settings
.dataType
|| settings
.dataType
== 'json') && xhr
.responseText
) {
872 var response
= $.parseJSON(xhr
.responseText
);
873 if (typeof(response
.crmMessages
) == 'object') {
874 $.each(response
.crmMessages
, function(n
, msg
) {
875 CRM
.alert(msg
.text
, msg
.title
, msg
.type
, msg
.options
);
885 $.blockUI
.defaults
.message
= null;
887 // Trigger crmLoad on initial content for consistency. It will also be triggered for ajax-loaded content.
888 $('.crm-container').trigger('crmLoad');
890 if ($('#crm-notification-container').length
) {
891 // Initialize notifications
892 $('#crm-notification-container').notify();
893 messagesFromMarkup
.call($('#crm-container'));
897 // bind the event for image popup
898 .on('click', 'a.crm-image-popup', function(e
) {
900 title
: ts('Preview'),
902 message
: '<div class="crm-custom-image-popup"><img src=' + $(this).attr('href') + '></div>',
908 .on('click', function (event
) {
909 $('.btn-slide-active').removeClass('btn-slide-active').find('.panel').hide();
910 if ($(event
.target
).is('.btn-slide')) {
911 $(event
.target
).addClass('btn-slide-active').find('.panel').show();
915 // Handle clear button for form elements
916 .on('click', 'a.crm-clear-link', function() {
917 $(this).css({visibility
: 'hidden'}).siblings('.crm-form-radio:checked').prop('checked', false).change();
918 $(this).siblings('input:text').val('').change();
921 .on('change', 'input.crm-form-radio:checked', function() {
922 $(this).siblings('.crm-clear-link').css({visibility
: ''});
925 // Allow normal clicking of links within accordions
926 .on('click.crmAccordions', 'div.crm-accordion-header a', function (e
) {
930 .on('click.crmAccordions', '.crm-accordion-header, .crm-collapsible .collapsible-title', function (e
) {
931 if ($(this).parent().hasClass('collapsed')) {
932 $(this).next().css('display', 'none').slideDown(200);
935 $(this).next().css('display', 'block').slideUp(200);
937 $(this).parent().toggleClass('collapsed');
946 $.fn
.crmAccordions = function () {};
948 * Collapse or expand an accordion
951 $.fn
.crmAccordionToggle = function (speed
) {
952 $(this).each(function () {
953 if ($(this).hasClass('collapsed')) {
954 $('.crm-accordion-body', this).first().css('display', 'none').slideDown(speed
);
957 $('.crm-accordion-body', this).first().css('display', 'block').slideUp(speed
);
959 $(this).toggleClass('collapsed');
964 * Clientside currency formatting
966 * @param format - currency representation of the number 1234.56
968 * @see CRM_Core_Resources::addCoreResources
970 var currencyTemplate
;
971 CRM
.formatMoney = function(value
, format
) {
972 var decimal, separator
, sign
, i
, j
, result
;
973 if (value
=== 'init' && format
) {
974 currencyTemplate
= format
;
977 format
= format
|| currencyTemplate
;
978 result
= /1(.?)234(.?)56/.exec(format
);
979 if (result
=== null) {
980 return 'Invalid format passed to CRM.formatMoney';
982 separator
= result
[1];
984 sign
= (value
< 0) ? '-' : '';
985 //extracting the absolute value of the integer part of the number and converting to string
986 i
= parseInt(value
= Math
.abs(value
).toFixed(2)) + '';
987 j
= ((j
= i
.length
) > 3) ? j
% 3 : 0;
988 result
= sign
+ (j
? i
.substr(0, j
) + separator
: '') + i
.substr(j
).replace(/(\d{3})(?=\d)/g, "$1" + separator
) + (2 ? decimal + Math
.abs(value
- i
).toFixed(2).slice(2) : '');
989 return format
.replace(/1.*234.*56/, result
);