// load panes function calls for snippet based on id of crm-accordion-header
function loadPanes( id ) {
var url = "{/literal}{crmURLp='civicrm/contact/view/contribution'q='snippet=4&formType='h=0}{literal}" + id;
{/literal}
{if$contributionMode}
url = url + "&mode={$contributionMode}";
{/if}
{if$qfKey}
url = url + "&qfKey={$qfKey}";
{/if}
{literal}
if (! cj('div.'+id).html()) {
var loading = '<imgsrc="{/literal}{$config->resourceBase}i/loading.gif{literal}"alt="{/literal}{tsescape='js'}loading{/ts}{literal}"/> {/literal}{tsescape='js'}Loading{/ts}{literal}...';
an example using the "Edit" button from the Contact View page :
<divclass="code panel"style="border-width: 1px;">
<divclass="codeContent panelContent">
<a title="Edit" class="edit button" href="#">
<span>
<div class="icon edit-icon"></div>
Edit
</span>
</a>
</div>
</div>
For example, create an "Edit" button from the Contact View page:
```html
<atitle="Edit"class="edit button"href="#">
<span>
<divclass="icon edit-icon"></div>
Edit
</span>
</a>
```
# crmDatepicker
## Date-picker
crmDatepicker is a jQuery widget with bindings for Angular and
Quickform.
`crmDatepicker` is a jQuery widget with bindings for AngularJS and Quickform.
Usage:
<divclass="code panel"style="border-width: 1px;">
```javascript
$('[name=my_field]').crmDatepicker();
```
<divclass="codeContent panelContent">
With no options passed in this will create a date/time combo field that displays
according to locale preferences and saves in ISO format.
$('[name=my_field]').crmDatepicker();
Options can be passed as a plain object. In addition to the [options accepted by the jQuery UI datepicker widget](http://api.jqueryui.com/datepicker/), the following CiviCRM-specific options are available:
</div>
| Option | Type | Description |
| -- | -- | -- |
| `allowClear` | bool | provide a button to clear the contents. This defaults to `true` unless the field has the class or attribute "required" |
| `date` | string\|bool | date display format (e.g. "m/d/y") or `true` to use the locale default, or `false` for no date entry. Default: `true`. |
| `time` | number\|bool | time display format (12 or 24) or `true` to use the locale default, or `false` for no time entry. Default: `true`. |
</div>
jQuery example of a date-only field in a custom display format:
<spanstyle="font-size: 10.0pt;line-height: 13.0pt;">With no options
passed in this will create a date/time combo field that displays
according to locale preferences and saves in ISO format.</span>
<spanstyle="font-size: 10.0pt;line-height: 13.0pt;"></span>Options can
be passed as a plain object. Available options:
-**allowClear**: (bool) provide a button to clear the contents. This
defaults to *true* unless the field has the class or attribute
"required"
-**date**: (string|bool) date display format (e.g. "m/d/y") or *true*
to use the locale default, or *false* for no date entry.
Default: *true*.
-**time**: (number|bool) time display format (12 or 24) or *true* to
use the locale default, or *false* for no time entry<span>.
Default: </span>*true*<span>.</span>
-<span><span>**minDate**: (date|string|number) either a javascript
date object or a unix timestamp or iso datestring (yyyy-mm-dd).
can be included with an element with the classes "crm-i" and the
"fa-..." class corresponding to the icon.
<divclass="panelMacro">
!!! tip{width="16" height="16"} Use <https://github.com/mattwire/uk.co.mjwconsult.fontawesome> if you want access to these icons in earlier versions of CiviCRM (for example, if you have an extension, that uses them).
</div>
and any of the [Font Awesome icons](http://fontawesome.io/icons//)
can be included with an element with the classes `crm-i` and the
`fa-...` class corresponding to the icon.
!!! tip
Use [this extension](https://github.com/mattwire/uk.co.mjwconsult.fontawesome) if you want access to these icons in earlier versions of CiviCRM (for example, if you have an extension, that uses them).
<div><iclass="crm-i fa-bullhorn"></i>Create new announcement</div>
```
<divclass="codeContent panelContent">
!!! note "Why `crm-i`?"
Many websites use Font Awesome, and a site's implementation of the `fa` class might differ from CiviCRM's Font Awesome implementation. The version might be different, or other styling might be associated with the class.
<div><i class="crm-i fa-bullhorn"></i> Create new announcement</div>
To avoid this, CiviCRM uses the `crm-i` class alongside the `fa-...` class for the specific icon.
</div>
</div>
<divclass="panelMacro">
+--+
| |
+--+
</div>
## Icon meaning and consistency
### Icon meaning and consistency
it's helpful to use icons consistently–to help new users understand the
purpose of an option and to help experienced users navigate quickly.
Here are some brief descriptions of the ways that various icons are
Prior to 4.7, icons were included in CiviCRM using the jQuery UI icon set as well as custom-developed icons. Those use sprites, which limit the size and color options for icons. As of 4.7, support for older icons remains in CiviCRM, but new features and customizations should use Font Awesome instead.
To use an existing icon simply find the one you want from the list below
and use the following code (in this example we are using the
"delete-icon"):
<divclass="code panel"style="border-width: 1px;">
<divclass="codeContent panelContent">
<div class="icon delete-icon"></div>
</div>
</div>
<divclass="panelMacro">
!!! tip{width="16" height="16"} CiviCRM uses image sprites ([more info](http://www.alistapart.com/articles/sprites){.external-link}) for its two icon sets.
</div>
### The following **CRM-specific** icons are available:
- Individual-icon
- Group-icon
- Household-icon
<!-- -->
- Individual-subtype-icon
- Household-subtype-icon
- Organization-subtype-icon
<!-- -->
- Organization-icon
- Activity-icon
- Case-icon
- Grant-icon
- Contribution-icon
- Pledge-icon
- Membership-icon
- Participant-icon
- Note-icon
- Relationship-icon
### The following **non CRM-specific** icons are available:
- edit-icon
- delete-icon
- dashboard-icon
- user-record-icon
- inform-icon
- tip-icon
`delete-icon`):
```html
<divclass="icon delete-icon"></div>
```
!!! tip
CiviCRM uses image sprites ([more info](http://www.alistapart.com/articles/sprites)) for its two icon sets.
The following **CRM-specific** icons are available:
*`Individual-icon`
*`Group-icon`
*`Household-icon`
*`Individual-subtype-icon`
*`Household-subtype-icon`
*`Organization-subtype-icon`
*`Organization-icon`
*`Activity-icon`
*`Case-icon`
*`Grant-icon`
*`Contribution-icon`
*`Pledge-icon`
*`Membership-icon`
*`Participant-icon`
*`Note-icon`
*`Relationship-icon`
The following **non CRM-specific** icons are available:
*`edit-icon`
*`delete-icon`
*`dashboard-icon`
*`user-record-icon`
*`inform-icon`
*`tip-icon`
Non CRM-specific icons can be altered to use one of 4 possible colors:
| **Empty Option** | *-* | A string to label the "null" option if the field is of type select and the user should be allowed to choose nothing. | | `data-empty-option="{ts}- none -{/ts}"` |
| **Tooltip** | *"Click to edit"* | Any text | | `data-tooltip="{ts}Help text{/ts}"` |
| **Placeholder** | *(standard edit icon)* | Any markup | | `data-placeholder="<span>Click to edit</span>"` |
| **Select Options** | *(automatic)* | Json-encoded options (Note: this is rarely needed as option lists are automatically fetched from the api by crmEditable) | | |
<td class="crm-editable crmf-prefix_id" data-type="select" data-empty-option="{ts}- none -{/ts}">Mr.</td> <!-- select list with empty option (note: options will be fetched automatically by the api) -->