mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Added Security Token
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@44311 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
9e787604dc
commit
1b9a6f4144
@ -38,7 +38,7 @@ ComplexTableField.prototype = {
|
|||||||
link.getAttribute("href"),
|
link.getAttribute("href"),
|
||||||
{
|
{
|
||||||
method: 'post',
|
method: 'post',
|
||||||
postBody: 'forceajax=1',
|
postBody: 'forceajax=1' + ($('SecurityID') ? '&SecurityID=' + $('SecurityID').value : ''),
|
||||||
onComplete: function(){
|
onComplete: function(){
|
||||||
Effect.Fade(
|
Effect.Fade(
|
||||||
row,
|
row,
|
||||||
|
@ -83,7 +83,7 @@ TableListField.prototype = {
|
|||||||
link.getAttribute("href"),
|
link.getAttribute("href"),
|
||||||
{
|
{
|
||||||
method: 'post',
|
method: 'post',
|
||||||
postBody: 'forceajax=1',
|
postBody: 'forceajax=1' + ($('SecurityID') ? '&SecurityID=' + $('SecurityID').value : ''),
|
||||||
onComplete: function(){
|
onComplete: function(){
|
||||||
Effect.Fade(row);
|
Effect.Fade(row);
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
|
Loading…
Reference in New Issue
Block a user