Hi Md Jonayed,
We have validated your query. Please check whether you have properly initializes the params in the serve side where you fetch the data.
[Server side code]
// initializes params at server side.
public bool requiresCounts { get; set; }
public int skip { get; set; }
public int take { get; set; }
public string data { get; set; }
public Dictionary<string, object> @params { get; set; } |
While providing the above code snippet you will get the params in the following format.
This is how the additional parameters get added from the server side request.
For more information you can check the following documentation link
Please check whether the provided information fulfills your requirement . If not, please share your code snippet (server side) or sample that replicates your issue if possible.
Thanks,
Christo