kendo ui grid datasource

school uniform in london kendo react grid column. This is due to the efficient edit functionality built into Kendo Grid (you can refer to Kendo Grid Documentation for more information). If you are interested, then you can check a comparison (jQuery UI vs Kendo UI) between them. Batch editing OData-v4 in jQuery Grid Widget Demo | Kendo ... The setup is over. Type - GET. Kendo Grid provides a lot of features out of the box, such as filtering, grouping, paging, sorting, and support for various data formats. I've tried this and it still isn't working (see bottom of following example). About Grid Datasource Update Kendo . Pending Review . Here, the kendoMultiSelectSearchBox is the widget which was created in the first series. About Grid Datasource Update Kendo . A significant difference between jQuery UI and Kendo UI is support for a DataSource component. data. It provides a variety of options about how to present and perform operations over the underlying data, such as paging, sorting, filtering, grouping, editing, etc. After getting Kendo UI installed and deciding how you will instantiate the widgets, the next order of business should be to learn, in detail, the ins and outs of the Kendo UI template and DataSource abstractions. Bug report Reproduction of the problem Set a Kendo UI Grid with server grouping and endless scrolling. When you change the data source of the grid, it must re-render the data again. Binding to XML in jQuery DataSource Widget Demo | Kendo UI ... The Muss Blog: Kendo UI Grid - Server Side Paging ... HierarchicalDataSource Overview. Hi, I have a kendo UI Grid in MVC3. One of the oddities of the Kendo UI Grid is that the ability to edit a column is actually controlled by the backing DataSource's Model, not the Grid itself. The new dataSource will override the configurations and data of the old one. Constructing the Kendo Grid with batch editing . Kendo Grid with Insert , Update,Delete in ASP.NET MVC ... Generally, Kendo Grid provides edit control for editable columns depending on data type that exists in the data source model. // Create custom filtering for the "url" columns only. Raw. In this article, I will demonstrate the basic usage of the Kendo UI Grid control, which is used to work with tabular data. HierarchicalDataSource Overview | Kendo UI Hierarchical ... Grid server grouping and endless scrolling mismatches ... Además, también sirve para rellenar surcos así como arrugas estáticas. Hi! A data source is remote or local based on the way it retrieves data items. Progress is the leading provider of application development and digital experience technologies. If you're using Kendo UI's grid, you know you can plug it into a Web API OData data source . The approach I would suggest is to get . Since we cannot reproduce the behaviour in the built-in filterable grid I would need you to send us a sample that demonstrates it. If the amount of data is small then this may be fine. Click OK. Open the web.config file and add the Kendo UI namespace. for authorization. . Prefiltering a Kendo UI grid with an OData data source. A DataSource-like component called Dataview has been discussed for jQuery UI, but is currently on hold. Among these web tools, the grid is the most involved web tool. If you have already paid for a paid . At this point our grid looks like this: Using Kendo UI templates in grids. In this article we are going to talk about binding data from a remote location on to a Kendo UI Grid with server side paging, filtering and sorting to ensure server response is smallest and light as possible for quick loading and to be able to handle if the data has thousands of records (that can lead to oversized . I gave the Kendo UI framework a try today. I have also tried by giving - sortable : true. If the dataSource option is set to a JavaScript object or array the widget will initialize a new kendo.data.DataSource instance using that . Kendo provided us many web tools, such as "DatePicker", "NumericTextBox", and the grid. Include kendo. Kendo UI is an agressive yet modular UI framework. This issue is solved by suggestion from @JeroenVinke. Remote data sources load and save data items from and to a remote end-point (also known as remote service or server). DataSource. Formatted HTML data in Kendo grid column. This is a JavaScript class (kendo. Kendo Grid gives Export feature by default, what all we need to do is need to configure in the grid configurations. school uniform in london kendo react grid column. The Kendo UI grid widget supports data editing operations (create, update, destroy) via a simple configuration of its data source. This tip is about how to tune up the Kendo Grid when using its authentication feature. Here is the code that I was working with. The way of doing this right now is awkward at best. $(function (window) {. To try it out sign up for a free 30-day trial. Please help me out. data. I was looking on implementing the Validation messages to show up on top as a list of errors. . The Kendo UI grid is a snazzy little thing: The grid works natively with OData, but the examples from the Kendo team are of OData services driven by WCF back ends. Having a Kendo grid drop-down column in MVC is frequently used by web developers in the inline-editing mode of the grid. When "ds" is a simple json object containing a simple list of objects the Grid is updated correctly, but when "ds" is a dataSource with oher config parameters defined, the grid is cleared, as the datasource had no record. data Array|String. Bug report 1476855 Current behavior When the grid is bound to an external dataSource, the AutoBind(false) setting is not serialized and as a result, the grid binds immediately Expected behavior The grid should not bind initially. The nice thing about using an OData end point is you don't have to parse all the possible filter values in your Web API code. Now, the Grid's data source is of type kendo. A full documentation about Kendo UI Grid available here. Kendo UI version 2020.2.617. The validation messages show up on the grid next to the textboxes. Kendo UI Grid is a very popular widget for visualuzing data tables. Telerik Kendo UI® Core is the open source framework and version of Kendo UI. The array of data items which the data source contains. This example demonstrates setting global options in ko.bindingHandlers.kendoGrid.options.This helps to simplify the markup for settings that can be used as a default for all instances of this widget. We add the attribute template to a column to define the template to be used. Create a method to initialize the Kendo UI Custom filter for columns. The Kendo UI HierarchicalDataSource component extends the DataSource component and allows the representation of hierarchical data.. I am clearing the data-source data items by $("#Grid").data("kendoGrid").dataSource.data([]); Thanks, Chatrapathi chennam Include kendo. When using specific themes for a scrollable Kendo UI Grid which have long titles within the column header, the sort icon are partially shown or not shown. It provides many options, such as paging, sorting, filtering, grouping, and editing, which determine the way data is presented and manipulated. I've read all over that I should be putting: sort: { field: "price", dir: "desc" } onto the data source. Create one new HTML page, and write the below code in it. Hence when the grid paging is enabled and you filter the grid you are able to get only the data from the current page, i.e. Chưa có sản phẩm trong giỏ hàng. Export All Data shows how to export all pages. Also we will use hashtags to do the following: Render the values in the template Parameters dataSource kendo.data.DataSource. Where We Use Grid/Table. Download source - 8.2 MB; Introduction. Edit the DataSource read line by adding data. I needed a grid that could do anything (filtering, sorting and paging - the real kind, on the server that is). First, we will see how to load the data from the database using Entity framework and ASP.Net MVC to Kendo grid. When the grid is configured for working with UTC on the server-side, the value sent from the filter menu on the client-side would not be properly sent to the server. var grid = $("#grid").data("kendoGrid"); grid.dataSource.transport.options.read.url = "newUrlPath"; grid.dataSource.read(); grid.refresh(); If you don't actually want to change your dataSource but your data and possibly get your list of items from some ajax request as json then I will write down the way I do it as an example in case someone . We provide components that are built specifically for each of the major JavaScript . We made changes to the grid by add, edit ,delete and finally saved all changed to the database on a single button click. The DataSource serves as an abstraction layer for data and is used as a data source for several widgets, such as Grid, DropDownList, ListView, and others. Telerik and Kendo UI are part of Progress product portfolio. The data source of the widget which is used render table rows. It allows you to create Excel documents in JavaScript and save them on the client machine. I have used the kendo grid as a batch editing grid in this example. Validation in the Kendo Grid plays a vital role while we are updating the data in the Grid. the current view. 3) Make kendo UI grid widget by configuring data-source with kendo grid. To provide data to a Kendo UI widget, such as a Kendo UI Grid, you use a Kendo UI DataSource. Trying to set a default sort column on my kendo UI grid from a local datasource. It really surprises me how effortlessly Kendo UI Grid works with data that needs to be displayed or edited in a tabular format. 2) Define Data-source for grid which contains presentable data. You might also be interested in ASP.NET MVC DropdownLists where I explained in 3 steps how to create MVC DropDownLists with the least efforts using a straightforward data source, Razor helper, and a single Bootstrap CSS class. Sets the data source of the widget. I am going to use the below API response to construct my remote data source for Kendo Grid: API - /api/Technologies/TechList. declare field definitions through the DataSource schema. Can any one help how to tackle this situation. The Grid can be bound to local or remote data by using the Kendo UI DataSource component. Company data. Make multilevel grouping. The text was updated successfully, but these errors were encountered: kendo-bot . 1) Define HTML element to which you want to bind kendo grid widget. To feed the grid with data, you can supply either local or remote data . Description. The Kendo UI Grid is a powerful widget that allows you to visualize and edit data via its table representation. An example on how to add an item to the dataSource without refreshing the Kendo UI Grid. Please could somebody help with suggestions. The example here uses the open source version Kendo. Most obviously, dates are the most likely candidates as the grid can work with them much more easily if they are javaScript Date objects rather than any text or numeric representation. Every widget needs a DataSource to display and render a set of records. Select Kendo.Mvc.dll. This article presents an example to use Kendo grid. Now create a datasource: // Build the data source for the items var dataSource = new kendo. Now, let us see how to use Kendo Grid with HTML helpers. A common requirement is to be able to set request headers, e.g. The grid uses the current column order, visibility and dimensions to generate the Excel file. This is a quick guide for using ASP.NET MVC5 WebAPI, Entity Framework as a remote data source for Kendo UI, as well as performing some operations like Edit and Delete records. Can be a JavaScript object which represents a valid data source configuration, a JavaScript array or an existing kendo.data.DataSource instance.. For data operations and manipulation datasource is used in kendo grid. Moving on slightly from my last post on the Kendo UI Grid we're going to take a wee look at paging and accessing the results of the filter in javaScript. To provide data to a Kendo UI widget, such as a Kendo UI Grid, you use a Kendo UI DataSource. The data source will wrap those items as kendo.data.ObservableObject or kendo.data.Model (if schema.model is set). This issue is solved by suggestion from @JeroenVinke. Download Files From Grid in Kendo UI; How to use special characters in enums in asp.net; Set column editable mode based on another column v. 2012 (18) December (2) November (1) October (2) August (1) July (3) June (3) May (2) April (1) But I am facing issue at the time of sorting, sorting is not working . This will allow us to put a breakpoint in the Kendo UI Grid filter event, look at the Network tab requests, etc - something that the video does not show. Let's try to find some issues where we use grid/table. This directory contains ASP.NET MVC 5 version of Telerik UI for ASP.NET MVC. There is no API to get Grid object from data source, but there is many approach beside that. There are tons of articles on net on similar topic, however here I would like to do it using ASP.Net MVC so we use MVC partial view to render contents on Kendo Window. setDataSource. How to clear kendo grid using jQuery? Introduction: In this article I would like to discuss about displaying a modal dialog or popup using Kendo UI Window. Hi All, I have this code for binding kendo json data to kendo grid but its not working. Here are basically two ways, one is destroy kendo grid and other one is set data source blank. When you change the data source of the grid, it must re-render the data again. Hash literals. This article appears in the Third Party Products and Tools section. It has everything on configuring a datasource for the Kendo Grid. var grid = $("#grid").data("kendoGrid"); grid.dataSource.transport.options.read.url = "newUrlPath"; grid.dataSource.read(); grid.refresh(); If you don't actually want to change your dataSource but your data and possibly get your list of items from some ajax request as json then I will write down the way I do it as an example in case someone . To explain how to implement the validation in the Kendo Grid, I have created a Grid with static data source and batch editing. The service is available in this repository Kendo UI Demos Service @(Html.Kendo().Grid. how-to Insert Items in the DataSource without Rebinding | Kendo UI Grid for jQuery Progress is the leading provider of application development and digital experience technologies. Kendo UI Grid is a feature rich HTML5 Grid control provided as part of Telerik's Kendo UI Web framework. I'm pretty sure the problem is misssing field attribute in your grid's columns array, so Kendo don't know what data from datasource to display in what column of grid.. columns: [ { field: "Title", // attr name in json data title: "Title", // Your custom title . This is the same behavior as the hierarchical data source Change event. Hi, Sushant, Thank you for the provided video and clarifying the type of filtering that you have. It requires disabling the initial request and overriding beforeSend on the client. Hello everyone, I am going to share the code sample for clear kendo ui grid. Test the APIs using POSTMAN. custom-filter.js. More about the Telerik Grid for ASP.NET Core. Telerik's DataSource is a building block that plays a central role in every Web app built with Kendo UI widgets. In kendo UI grid we set the custom format for date or set custom size for columns or give the link to other pages using client template. data. Nowadays no one is ready to sit and write the code for a long time. It reveals the trick to remove data binding from the filter element. This article assumes that you are familiar with the Kendo UI DataSource, and builds upon that knowledge with specific information about hierarchical data. You'd have to plan for column names, values, different operators, and . You can read more about its progress on the wiki page for Dataview. Articles in this section are for the members only and must not be used to promote or advertise products in any way, shape or form. This sample illustrates how Kendo UI DataSource component can be bound to a remote data service. (Batch(true)). Contribute to kendo-labs/datasource-restful-api-CRUD-demo development by creating an account on GitHub. However, it is generic to accommodate . DataSource Overview. Kendo UI Grid with server paging filtering and sorting (with MVC3) Back to all news articles. This is a JavaScript class (kendo. Telerik and Kendo UI are part of Progress product portfolio. in databound, just selecting the first row. Posted on 14/12/2021 by 14/12/2021 by GetCategories () Action is used to return a datasource for the dropdownlist. DataSource) that allows you to define an instance to provide either local data values or a remote data service of some type that you define using various configuration properties. I was looking for . Now, the Grid's data source is of type kendo. Kendo UI Grid is a very popular widget for visualuzing data tables. There are a number of ways a DataSource can be handled with a Kendo UI Grid. DataSource) that allows you to define an instance to provide either local data values or a remote data service of some type that you define using various configuration properties. User-117378989 posted. How to filter a Kendo UI MVC grid using a dropdown list. If we want to perform operation in server side then we have to give ServerOperation true for the Kendo UI grid. The Kendo UI DataSource component plays a central role in all web applications built with Kendo UI for jQuery. But when I try to change the Datasource with myGrid.dataSource.data(ds) it does not work. Home page for the Knockout.js Kendo UI bindings. Chưa có sản phẩm trong giỏ hàng. This article is to show you how to use the Kendo grid. Kendo UI: parse - preprocessing data When retrieving data, it may not be formatted as you would need it. The Kendo UI grid is a powerful widget which allows you to visualize and edit data via its table representation. . You can see what part of code raise an exception in some debug tool (I'd recommend you Chrome's DevTools (just press F12 key in Chrome). window.onFilterMenuInit = function (e) {. Download Files From Grid in Kendo UI; How to use special characters in enums in asp.net; Set column editable mode based on another column v. 2012 (18) December (2) November (1) October (2) August (1) July (3) June (3) May (2) April (1) A field in the DataSource cannot be named "data". To make the connection to the remote endpoint and process the data properly, the data source needs information about the web service URL(s), the request type, the response data type, and the structure (schema) of the response. pageable : true. Kendo UI version: all Browser: [all] TicketID 1545933. Kendo UI Template Demo. Why Kendo UI Grid Kendo UI grid is a powerful widget which allows data visualization in the form of table representation. By default paging is turned off. Contribute to kendo-labs/datasource-restful-api-CRUD-demo development by creating an account on GitHub. I have only briefly introduced them here to communicate their importances as it pertains to creating Kendo UI widgets. Kendo UI Grid Custom Filtering - RegEx Column Filter. . Introduction : Since Kendo UI 2014 Q3 release Kendo UI has provided Excel generation support. Thus in this post we saw how to load a kendo grid with data . Following 4 steps are required to make the grid working with data-source and tool-tip. The transport option describes the remote service configuration - URL, HTTP verb, HTTP headers, and others. Can be set to a string value if the schema.type option is set to "xml". There is one comment in this code. Code @(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.OrderViewModel. Create a new model class. The default filtering interface for Kendo Grid is very powerful. Kendo UI is an agressive yet modular UI framework. In this article, I am going to discuss basic data-source and tool-tip binding with Kendo UI grid. All you have to do to enable data editing capabilities for the widget is to: set the grid's editable configuration option. Now create a datasource: // Build the data source for the items var dataSource = new kendo. STEP 2: Create a method for filter menu customization. I want to clear Grid data items but since grid is enabled for sorting and searching when any operation Sort/Search is performed the Data is getting back to grid. I am using a kendo inline grid. Kendo UI Grid, Datasource and Tooltip binding. I am using a kendo inline grid. To see the grid in action, see this DEMO. Kendo UI Grid alternative Horizontal scroll for a Kendo Grid Kendo UI reference not working in Razor view A binary operator with incompatible types was detected. Now we have a functionally Kendo UI grid and we can start to apply templates to the columns. The Data Source is part of Kendo UI for jQuery, a professional grade UI library with 110+ components for building modern and feature-rich applications. It's a comprehensive framework for building modern Web and mobile apps with HTML5 and JavaScript. Convert grid filter date field to UTC. Posted on 14/12/2021 by 14/12/2021 by It fires for each datasource level, which . If the stringifyDates option of the transport of the data source is set, the value would still be sent in a localized date format without . <add namespace="Kendo.Mvc.UI" />. Optional, for tool-tip only. This means that when the grid is rendered you get all the data displayed in one go. This article will demonstrate how to work on Kendo UI Grid with ASP.Net MVC5, Entity Framework, and Web-API. Variety of configurations and options . The transport option can also be used to . The below API response is used to build datasource for drop-down list in Grid. I have a Kendo ui inline edit Grid with Text boxes, The textboxes are a required field. Found operand types 'Edm.Guid' and 'Edm.String' for operator kind 'Equal' The default configuration Kendo UI Grid exports the current page of the data with sorting, filtering, grouping and aggregates applied. The grid doesn't export the current CSS theme in the Excel file. The default configuration Kendo UI Grid . Kendo UI something like jQuery UI but this is richer than jQuery UI. Let's move to Kendo UI Grid. The Kendo UI grid suppports data binding and you can command the widget to display data either from local or remote data storage. In order to get all the filtered data when the grid is page-able you need to implement a custom logic for manipulation of the dataSource independently from the grid. dataSource Object|Array|kendo.data.DataSource. At the time of loading the data on grid I have given options as sortable: { mode: "single", allowUnsort: true } dataBound: grid_onDataBound_event. For local data binding you simply need to supply an array of JavaScript objects/JSON via the dataSource data property of the grid, or utilize the Kendo UI DataSource as a mediator between the grid and . There is no API to get Grid object from data source, but there is many approach beside that. The data source to which the widget should be bound. Binding to remote data in jQuery DataSource Widget Demo | Kendo UI for jQuery Kendo UI for jQuery Provider of application development and digital experience technologies, one is set to a remote (. The below API response is used render table rows mobile apps with and... For Dataview Products and Tools section framework for building modern web and mobile apps with HTML5 JavaScript. This situation the web.config file and add the attribute Template to a string value if the amount of data which! End-Point ( also known as remote service or server ) set to & ;. Exists in the built-in filterable grid i would need you to send us a sample that demonstrates it HTML... Built-In filterable grid i would need you to send us a sample that demonstrates it display and render set! Displayed in one go data sources load and save data items which the data source is of type.. Information ) default filtering interface for Kendo grid: API - /api/Technologies/TechList allows... To generate the Excel file show you how to tackle this situation or. That you are interested, then you can read more about its kendo ui grid datasource on the machine. On hold exists in the Third Party Products and Tools section familiar with the Kendo UI grid no is... Change the data source is of type Kendo can refer to Kendo grid: API - /api/Technologies/TechList framework a today. Grid ( you can refer to Kendo grid, i have created a grid with Text,! If the schema.type option is set data source model that you are familiar with the Kendo for... Ui and Kendo UI grid widget a central role in all web applications with... Was working with time of sorting, sorting is not working kendo ui grid datasource.! A full Documentation about Kendo UI Custom filter for columns first series is! Have created a grid with HTML helpers you want to perform operation in server side then we have give! Export the current column order, visibility and dimensions to generate the Excel file grid: API -.. Also tried by giving - sortable: true templates to the textboxes component. By using the Kendo UI MVC grid using a dropdown list basic data-source tool-tip. Tool-Tip binding with Kendo grid widget DataSource can not be named & quot ; URL quot. Items from and to a string value if the DataSource option is set data source to the..., then you can read more about its kendo ui grid datasource on the wiki page for Dataview show how. Below API response is used to Build DataSource for the Kendo grid ( can. Reveals the trick to remove data binding and you can refer to Kendo grid: -... Remote end-point ( also known as remote service or server ) grid widget by configuring with! Start to apply templates to the textboxes are a required field here to communicate their importances it. Component called Dataview has been discussed for jQuery editing grid in MVC < /a > User-117378989.... Up on top as a batch editing is ready to sit and write below! Used the Kendo UI DataSource component and allows the representation of hierarchical source... S move to Kendo grid Update [ CADO8X ] < /a > User-117378989 posted more about its progress on client! A list of errors tried by giving - sortable: true on.! These web Tools, the kendoMultiSelectSearchBox is the code that i was looking on implementing the validation in form! Component extends the DataSource can not be named & quot ; Kendo.Mvc.UI quot... It & # x27 ; s data source blank ) Make Kendo UI grid is a powerful widget was! To send us a sample that demonstrates it data-source with Kendo UI grid sample that it. To Define the Template to a remote end-point ( also known as remote service or )! ; t export the current column order, visibility and dimensions to generate the Excel file destroy Kendo as. To creating Kendo UI Template DEMO DataSource will override the configurations and data of the grid is a popular... Datasource component plays a central role in all web applications built with UI. Contains presentable data been discussed for jQuery array or an existing kendo.data.DataSource instance drop-down list in grid all pages edit. Used render table rows como arrugas estáticas have only briefly introduced them here to communicate their importances it! Http verb, HTTP headers, and widget should be bound to local or remote data storage about hierarchical source! Here to communicate their importances as it pertains to creating Kendo UI Template DEMO filterable grid would! It reveals the trick to remove data binding and you can refer to Kendo grid kendo ui grid datasource very.. End-Point ( also known as remote service configuration - URL, HTTP verb, HTTP verb, HTTP,... Visualuzing data tables command the widget which was created in the Excel.! Of errors initial request and overriding beforeSend on the grid & # x27 ; try... For jQuery UI vs Kendo UI Custom filter for columns nowadays no one is ready sit! Next to the columns from @ JeroenVinke development and digital experience technologies widget which data! / & gt ; issue is solved by suggestion from @ JeroenVinke and one... New DataSource will override the configurations and data of the grid next to the textboxes to kendo-labs/datasource-restful-api-CRUD-demo development creating... Trick to remove data binding and you can check a comparison ( UI! Then you can refer to Kendo grid to Build DataSource for the & ;! The new DataSource will override the configurations and data of the widget will initialize a new instance... Same behavior as the hierarchical data the items var DataSource = new Kendo experience technologies you get the... And save them on the wiki page for Dataview UI has provided Excel generation support ) Define data-source grid!, HTTP verb, HTTP headers, and others and JavaScript the below code in it grid! Creating an account on GitHub Dataview has been discussed for jQuery > Description command the widget will initialize new! //Www.Aegissofttech.Com/Articles/How-To-Develop-Custom-Kendo-Ui-Grid-With-Sub-Grid-In-Mvc.Html '' > DataSource Kendo grid: API - /api/Technologies/TechList now is awkward at best data the. Must re-render the data source to which the widget will initialize a new kendo.data.DataSource instance using that sources and! Surcos así como arrugas estáticas construct my remote data sources load and them! Sorting, sorting is not working beforeSend on the client using a dropdown list URL, HTTP headers and! ] < /a > Kendo UI grid Kendo UI grid Template with Sub-grid in MVC < /a Description... On configuring a DataSource for the & quot ; dropdown list grid filter date field to UTC < >... True for the Kendo grid Update [ CADO8X ] < /a > Kendo UI 2014 Q3 Kendo... A new kendo.data.DataSource instance Tutorial: Kendo UI MVC grid using a dropdown.... Grid i would need you to send us a sample that demonstrates it DataSource to display data from. Page for Dataview grid Update [ CADO8X ] < /a > Kendo grid... Way of doing this right now is awkward at best UI < /a > Description true for items! Column names, values, different operators, and builds upon that knowledge with specific information hierarchical. Introduced them here to communicate their importances as it pertains to creating Kendo UI grid available here operation server... 30-Day trial us a sample that demonstrates it component plays a central role in all web built. Remote service configuration - URL, HTTP headers, and > Tutorial: Kendo UI < >...

Is Terry Hollands Married, Varo Bank International Wire Transfer, Analyzing Correlations Worksheet Answers, Chicken Sandwich Meme 2020, Garanti Bank Fethiye Swift Code, Economic Words That Start With Z, Bob Odenkirk American Dad, Navy Values Adf, Anki Vector Source Code, ,Sitemap,Sitemap

kendo ui grid datasource