silverstripe-framework/javascript/InlineFormAction.js
Ingo Schommer 5911abc0f6 API CHANGE Removed prototype.js style $() alias usage for document.getElementById() to avoid confusion with the more common jQuery() alias.
API CHANGE Removed several unsed JavaScript globals: sprintf(), Number.prototype.CURRENCIES, Number.prototype.toCurrency(), String.prototype.ucfirst(), jQuery.fn.clearFields(), jQuery.fn.clearInputs()
MINOR Removed prototype_improvements.js and jquery_improvements.js files, now contained in individual component code (or removed altogether)
2012-02-16 12:27:47 +01:00

18 lines
446 B
JavaScript

/**
* Javascript-Template, needs to be evaluated by Requirements::javascriptTemplate
*/
Behaviour.register({
'div.inlineformaction input#$ID': {
onclick: function() {
var url = jQuery('base').attr('href') + 'admin-custom/' + this.name.substring(7) + '?ID=' + jQuery('#Form_EditForm_ID').value + '&ajax=1';
jQuery.ajax({
'url': url,
success: Ajax.Evaluator,
success: Ajax.Evaluator
});
return false;
}
}
});