Displays all Custom Fields of the Item as HTML code.
[Item:custom_fields|fields_source=all]
$Item->custom_fields( array(
'fields' => 'custom_field_1,custom_field_2,custom_field_3',
'fields_source' => 'include ',
) );
Param
|
Default
|
Usage
|
---|
fields
|
''
|
Empty string to display ALL fields, OR fields names separated by a comma to show/hide only the requested fields in the order you want
|
fields_source
|
include
|
Possible values: all - All item’s custom fields; exclude - All except fields listed in the param fields ; include - Only fields listed in the param fields
|
custom_fields_table_start
|
<div class="evo_content_block"><table class="item_custom_fields">
|
HTML for the start of the custom fields table
|
custom_fields_row_start
|
<tr$row_attrs$>
|
HTML for the start of custom fields row
|
custom_fields_topleft_cell
|
<td style="border:none"></td>
|
|
custom_fields_col_header_item
|
<th class="$col_class$ center" width="$col_width$"$col_attrs$>$item_link$$item_status$</th>
|
|
custom_fields_row_header_field
|
<th class="$header_cell_class$">$field_title$$field_description_icon$</th>
|
|
custom_fields_item_status_template
|
<div><div class="evo_status evo_status__$status$ badge" data-toggle="tooltip" data-placement="top" title="$tooltip_title$">$status_title$</div></div>
|
|
custom_fields_description_icon_class
|
grey
|
CSS class for custom field description icon
|
custom_fields_value_default
|
<td class="$data_cell_class$"$data_cell_attrs$>$field_value$</td>
|
|
custom_fields_value_difference_highlight
|
<td class="$data_cell_class$ bg-warning"$data_cell_attrs$>$field_value$</td>
|
|
custom_fields_value_green
|
<td class="$data_cell_class$ bg-success"$data_cell_attrs$>$field_value$</td>
|
|
custom_fields_value_red
|
<td class="$data_cell_class$ bg-danger"$data_cell_attrs$>$field_value$</td>
|
|
custom_fields_edit_link_cell
|
<td class="center"$edit_link_attrs$>$edit_link$</td>
|
|
custom_fields_edit_link_class
|
btn btn-xs btn-default
|
CSS class for custom field edit link
|
custom_fields_row_end
|
</tr>
|
|
custom_fields_table_end
|
</table></div>
|
HTML for end of custom fields table
|
custom_fields_separator_row_header_field
|
<th class="$header_cell_class$" colspan="$cols_count$">$field_title$$field_description_icon$</th>
|
|
This tag displays content only, it does not have a return value.