And sort by customerid, and then scroll down, there will be times in the scroll where it jumps back to the beginning of the list. Is this something that can be fixed in the configuration or is it a bug? Thanks!
Really important to have support for ARIA roles on these types of widgets. That's what they were made for, and jQueryUI does a pretty good job at this.
I have some very small graphs that I'm using as trending indicators on a dashboard and I'd like to increase the gap between the major axis. I tried to apply majorUnits to the valueAxis object with a number, however, this has no effect. Can you let me know if it's possible to change the gap between major axis on the value Axis? Thanks
I've been using Telerik products for a while now, I'm always impressed with your GUI components, especially performance and visual appeal. Recently I've heard all the buzz around HTML5 and am dismayed to see that Silverlight's days may be numbered as a public platform. I'm sure it will continue to exist behind corporate firewalls but for general users on the web? Possibly not.
Which brings me to the next question. As a seasoned .NET client developer (10 years) my javascript and web stack knowledge is pretty basic. The learning curve for HTML5 is high as I need to learn ASP.NET, webservices, Javascript plus the HTML5 API. I am considering writing an open source web application to assist with the learning process, using Kendo UI as a core set of libraries. The question I have is this: where and how can I start on the learning curve? Are there any good sources you can recommend to get me started making the move from Silverlight/WPF and .NET Client development to .NET Web development with HTML5/JS as a front end?
Hi, I am not sure if i am supposed to use the support ticketing system for this, but I have noticed a tiny bug in the grid example.
When using the sort function on the group, it's change is not reflected in the column and visa versa.
It might be better to use the group's sorting icon to expand/collaps the group.
Is leverage the "change" event the correct approach to wire up some templates and grid that use a common DataSource?
I have the following code, but it take about 5 seconds for the binding to occur even though the data is returned in under a second.
<script>
$(document).ready(function () {
var dsBoxScore = new kendo.data.DataSource(
{
type: "json",
transport:
{
read: "JsonBoxScoreGet"
},
change: function () {
var scriptTemplateBoxscoreHomeTeam = kendo.template($("#templateBoxScoreHomeTeam").html());
$("#scriptBoxScoreHomeTeam").html(scriptTemplateBoxscoreHomeTeam(this.data().HomeTeam));
var scriptTemplateBoxscoreAwayTeam = kendo.template($("#templateBoxScoreAwayTeam").html());
$("#scriptBoxScoreAwayTeam").html(scriptTemplateBoxscoreAwayTeam(this.data().AwayTeam));
We currently have an application that is based off spring framework. It is MVC architecture and has its own data tier, business tier and application UI. Can we bind this middle tier to Kendo controls? If "yes" is there an example of this?