currently I have the following:
$.ajax({ type: \'POST\', url: this.action, data: $(this).serialize(), });
This works fine, howe
Add the item first and then serialize:
$.ajax({ type: 'POST', url: this.action, data: $.extend($(this), {'NonFormValue': NonFormValue}).serialize() });