mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
1db08bac88
BUG Fix TreeMultiSelectField using the wrong label BUG Fix encoding of selected title on TreeDropdownField BUG Fix DataDifferencer trying to compare non-comparable fields (non-dbfield objects) BUG: Fix issue with TreeMultiSelectField not saving BUG: Fix issue with GridFieldPrintButton ENHANCEMENT Instead of using multiple api calls to encode dbfield values, delegate this operation to the individual fields via forTemplate Instead of using a new API to communicate html encoding to treeselect, just ensure all content is HTML encoded, and enable html_titles in jstree.
8 lines
183 B
Scheme
8 lines
183 B
Scheme
<% if $UseButtonTag %>
|
|
<button $AttributesHTML>
|
|
<% if $ButtonContent %>$ButtonContent<% else %>$Title.XML<% end_if %>
|
|
</button>
|
|
<% else %>
|
|
<input $AttributesHTML />
|
|
<% end_if %>
|