Declined
Last Updated: 07 Oct 2012 10:55 by ADMIN
Created by: Gabriel
Comments: 1
Category: Data Source
Type: Feature Request
1
Declined
Last Updated: 10 Jan 2018 14:51 by ADMIN
ibm
Created by: benchamma
Comments: 1
Category: Data Source
Type: Feature Request
1
ibm
utfq8
Declined
Last Updated: 18 Jun 2021 08:14 by ADMIN
Created by: Barry Burton
Comments: 2
Category: Data Source
Type: Feature Request
1

This is more of a feature request...

If I want to refresh a datasource every 60 seconds, be it a grid, a dropdown, etc., I have to add a snippet of code something like this:

var interval = 60000;

         setInterval(function()

         {
             $("#my-grid").data("kendoGrid").dataSource.read();
         }, interval);

Yes, I realize this is trivial, but it would be nice if you could add an AutoRefresh function directly to the DataSource API that handled all of this under the covers.  Example:

           .DataSource(dataSource => dataSource
               .WebApi()
               .PageSize(20)
               .Model(model =>
               {
                   model.Id(m => m.StoreId);
               })
               .Read(read => read.Url(Url.HttpRouteUrl("GetData", null)).Data("additionalData"))
               .AutoRefresh(60) // seconds
               .Events(e => e.Error("onError"))
           )
Declined
Last Updated: 06 Jun 2013 17:55 by ADMIN
Created by: Imported User
Comments: 1
Category: Data Source
Type: Feature Request
1
Instead of using JSON to create a pie chart in Dataviz, it would be so much easier to use an SQLDataSource, So that the pie chart can be dynamically updated.
Declined
Last Updated: 05 Jun 2013 22:16 by ADMIN
Created by: Imported User
Comments: 1
Category: Data Source
Type: Feature Request
1
Add a Kendo UI Mobile Listview with real time cross domain data binding
and this could be a simple modification of your current listview demo, where instead of using the hard coded data, use the real time data which is hosted on a website (i.e. google or twitter) and bind that data (json) to the listview...
Declined
Last Updated: 15 May 2014 08:55 by ADMIN
Apologies if this is not the right place to post this, but couldn't find a bug section for Kendo UI.

The problem: [DataSourceRequest]DataSourceRequest Custom binding doesn't seem seem to add the WHERE into the generated SQL, when using DataSourceRequest.Filters ( i.e.  myCollection.Where(request.Filters)). However, paging, and sorting working as expected. I would appreciate some feedback on this issue. Thank you very much, Panos.
Declined
Last Updated: 03 Feb 2022 11:58 by ADMIN
When you have multiple spreadsheet components on the same HTML page, allow them to cross reference each other, similar to the existing referencing capability across multiple tabs (like worksheets) but across completely separate objects (like workbooks) - of course they would need to be on the same page.
Declined
Last Updated: 28 Oct 2021 11:08 by ADMIN
If onerecord is saved in database and that record contains onw value which is saved using multiselect and that record will not removed updating that recordi
1 2 3 4