mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
16 lines
381 B
JavaScript
Executable File
16 lines
381 B
JavaScript
Executable File
(function($){
|
|
|
|
$.entwine('ss', function($) {
|
|
$('.ss-gridfield .field .gridfield-dropdown').entwine({
|
|
|
|
onchange: function() {
|
|
var gridField = this.getGridField();
|
|
var state = gridField.getState().GridFieldSiteTreeAddNewButton;
|
|
|
|
state.pageType = this.val();
|
|
gridField.setState("GridFieldSiteTreeAddNewButton", state);
|
|
}
|
|
});
|
|
});
|
|
|
|
}(jQuery)); |