mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
24 lines
503 B
JavaScript
24 lines
503 B
JavaScript
|
/**
|
||
|
* form builder behaviour.
|
||
|
*/
|
||
|
|
||
|
(function($) {
|
||
|
$.entwine('ss', function($) {
|
||
|
$(".ss-gridfield-orderable tbody").entwine({
|
||
|
onmatch: function() {
|
||
|
this._super();
|
||
|
|
||
|
this.find('.ss-gridfield-item')
|
||
|
.removeClass('inFieldGroup');
|
||
|
|
||
|
this.find('.ss-gridfield-item[data-class="EditableFieldGroup"]')
|
||
|
.nextUntil('.ss-gridfield-item[data-class="EditableFieldGroupEnd"]')
|
||
|
.addClass('inFieldGroup');
|
||
|
},
|
||
|
onunmatch: function () {
|
||
|
this._super();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
}(jQuery));
|