or
@(Html.Kendo().Button() .Name("SentItems") .Content("Send Products") .Events(e => e.Click("SendData")))function SendData() { alert('Sending Data'); var gridData = $("#PLAGridMain").data("kendoGrid"); var text = "Object properties are: "; $.ajax({ url: '/Home/sendRows', cache: false, type: 'POST', contentType: 'application/json; charset=utf-8', data: JSON.stringify($("#PLAGridMain").data("kendoGrid").dataSource), complete: function() { alert("success: "); } }) }C# in HomeController:[HttpPost] public void sendRows(Grid<string>) { //[DataSourceRequest] DataSourceRequest dataSourceRequest //send each row to the google MCC. string PLA = string.Empty; }<input id="combobox" /><script> $("#combobox").kendoComboBox({ dataSource: [ { id: 1, name: "Apples" }, { id: 2, name: "Oranges" }, { id: 3, name: "Grapes" }, { id: 4, name: "Bananas" } ], dataTextField: "name", dataValueField: "id" });</script>+--------------+| Apples || Oranges || Grapes || Bananas |+--------------+