Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Infragistics grid components with Secured Tokes
posted

Hi,

In Infragistics grid components, can we configure them to use tokens for resolving the JavaScript / JSON Hijacking issue.

Like in the below example, we are calling the MVC controller method to get the data. Is there a way to secure this call to resolve the client scripting hijacking with passing the tokens. Do we have in-built functionality in Infragistics grid components to achieve this.

$('#Grid1').igGrid({
dataSource: "Controller1/GetSampleData?id=123",
responseDataKey: 'data'
etc....
})

MVC controller Code

[HttpGet]
public ActionResult GetSampleData(string id){ .... }

Thanks

Vijay