New to Kendo UI for jQueryStart a free 30-day trial

Stringify

methods

Converts a JavaScript object to JSON. Uses JSON.stringify in browsers that support it.

Parameters:valueObject

The value to convert to a JSON string.

Returns:String

The JSON representation of the value.

<script>
var json = kendo.stringify({ foo: "bar" });
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(json); // displays {"foo":"bar"}
</script>
Not finding the help you need?
Contact Support