When deleting / adding a row, I need to send additional parameter in form of POST data. By default, only “oper” and “id” paramters being sent over. Let's say I need to delete / add based on “user_id” (a foreign key of the dataset), how can I put it into the POST data?
This is what I tried but didnt work.
onclickSubmit: function(rowid) {
var val = $('#tags').getCell(rowid, 'user_id');
return {user_id:val};
}
Please help….I can't delete or add anything.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top