Kendo UI serialisation
HTML
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="http://cdn.kendostatic.com/2012.2.621/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.621/styles/kendo.default.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.621/styles/kendo.common.min.css">
JavaScript
var dataSourceSuggestion = new kendo.data.DataSource({
data: [{
"CustNo": "1168"},
{
"CustNo": "1168"}],
schema: {
model: {
id: "CustNo",
fields: {
custNo: {
}
}
}
}
});
dataSourceSuggestion.read();
$.ajax("http://test.com", {
data: dataSourceSuggestion.data()
});