Hello
How can I pass multiple parameters while removing records from datagrid?
This is the code I have taken from example
$.post('controller?flag=remove',{id:row.id},function(result){
My columns which are defined in html tables are prjId and prjDate which I would like to pass to my controller.
How can I do this?
P.S. When I looking Firebug console I could see only remove being passed as parameter.
Thanks