diff --git a/javascript/CommentTableField.js b/javascript/CommentTableField.js index 928a7da0..3582950a 100644 --- a/javascript/CommentTableField.js +++ b/javascript/CommentTableField.js @@ -121,7 +121,7 @@ CommentFilterButton.prototype = { updateURL += this.inputFields[index].name + '=' + encodeURIComponent( this.inputFields[index].value ) + '&'; } } - updateURL += 'ajax=1'; + updateURL += 'ajax=1' + ($('SecurityID') ? '&SecurityID=' + $('SecurityID').value : ''); new Ajax.Request( updateURL, { onSuccess: Ajax.Evaluator, diff --git a/javascript/MemberTableField.js b/javascript/MemberTableField.js index 91b46ebc..b7d49f5c 100755 --- a/javascript/MemberTableField.js +++ b/javascript/MemberTableField.js @@ -254,7 +254,7 @@ MemberFilterButton.prototype = { updateURL += this.inputFields[index].name + '=' + encodeURIComponent( this.inputFields[index].value ) + '&'; } } - updateURL += 'ajax=1'; + updateURL += 'ajax=1' + ($('SecurityID') ? '&SecurityID=' + $('SecurityID').value : ''); new Ajax.Request( updateURL, { onSuccess: Ajax.Evaluator,