Ok so I have the code to send a param over to eh grids webservice
How though, do I consume this on the webservice?
(here's my definition)
//Send the parameters |
function OnDataBinding(sender, args) { |
var methodArguments = args.get_methodArguments(); |
var myMethodArguments = methodArguments; |
myMethodArguments.someParameter = "test"; |
args.set_methodArguments(myMethodArguments); |
} |
How though, do I consume this on the webservice?
(here's my definition)
[WebMethod(EnableSession = true)] |
[ScriptMethod] |
public Dictionary<string, object> GetOutstandingApprovalsData(int startRowIndex, int maximumRows, List<GridSortExpression> sortExpression, List<GridFilterExpression> filterExpression) { |
Dictionary<string, object> data = new Dictionary<string, object>(); |