Completed
Last Updated: 20 Nov 2014 20:00 by ADMIN
Created by: JohnVS
Comments: 2
Category: SPA
Type: Feature Request
53
Currently, there is no way to make a Mobile Application (SPA) search engine friendly. You cannot use the "alternate" and "canonical" tags, since the SPA page is only loaded once. And you can't use Google's suggested #! syntax, since Kendo only supports the # syntax. So there is basically no way to get a Kendo Mobile website indexed properly.
Completed
Last Updated: 22 May 2014 12:36 by ADMIN
Created by: Imported User
Comments: 1
Category: SPA
Type: Feature Request
10
Add a small nanoscopic progress bar featuring realistic trickle animations to convince your users that something is happening. This would be perfect for Turbolinks, Pjax, and other Ajax-heavy SPA's.

More infos: https://news.ycombinator.com/item?id=6246183
Completed
Last Updated: 17 Jul 2014 15:21 by ADMIN
Created by: Christian
Comments: 1
Category: SPA
Type: Feature Request
10
Some animations for Kendo view transitions in the Web UI would be awesome. SPA's are missing that nice fade or slide between view switching. 
Completed
Last Updated: 07 Oct 2016 12:21 by ADMIN
Created by: alon
Comments: 2
Category: SPA
Type: Feature Request
10
Missing a real world sample of spa with shell's page + layers with AngularJS like we have in mvc/jsp/php demos.
why spa (the most common used) have no samples, no blogs, no documantation with - AngularJS ? 
Completed
Last Updated: 26 Nov 2014 16:54 by ADMIN
Created by: Imported User
Comments: 2
Category: SPA
Type: Feature Request
1
Kendo editor should change it's size according to the text inside the text area if the relevant option is set to "true"
Completed
Last Updated: 25 Nov 2014 14:50 by ADMIN
Created by: Imported User
Comments: 1
Category: SPA
Type: Feature Request
1
Kendo editor should have an option to change it's colour tool (ex:- "websafe", "basic" etc.)
Completed
Last Updated: 11 Aug 2016 19:04 by Marc Simkin
Created by: Marc Simkin
Comments: 3
Category: SPA
Type: Feature Request
1
The routing framework should allow the developer to choose either the legacy # base routing scheme or the new HTML5 routing and History API.

This would make the porting of applications from other frameworks (AngularJS, Backbone, etc) that already support HTML5 routing easier.
Completed
Last Updated: 30 Oct 2017 17:22 by ADMIN
Created by: Steve
Comments: 2
Category: SPA
Type: Feature Request
1
With Vue.js integration started but not complete, I'd like to see the plan for rolling out the integration until it has parity with the existing packages like jQuery & Angular.  I'd also like information about any public beta versions so that I can plan for controls as they appear.  I have a possible long term upcoming project that I'd like to consider using these controls in, but without visibility into the progress it will be hard to justify using this package.
Completed
Last Updated: 08 Jul 2021 20:33 by ADMIN
Release 2019.R3

Taken from the StackOverflow question 'Why does 'show' event on Kendo View fire twice?' https://stackoverflow.com/questions/56266538/why-does-show-event-on-kendo-view-fire-twice

If a Kendo View is rendered into a Layout (using layout.showIn()), the show event for the view fires twice. Interestingly, if the view is rendered directly into a DOM element (using view.render()) the event is only fired once, like it's supposed to.

The code is pretty well copied from the Kendo UI Dojo thingee. I wonder if can you run this :https://dojo.telerik.com/AkOwiMAZ/2


<div id="app"></div>
<script>
var foo = new kendo.View("<span>Foo</span>", { hide: function() { console.log("Foo is hidden now"); }, show: function() { console.log( "Foo is shown now"); }});

var layout = new kendo.Layout("<header>Header</header><section id='content'></section><footer></footer>");

// Creating the layout, and using the showIn method to render the view
// is where I'm having the issue (2 'show' events fire)
layout.render($("#app"));
layout.showIn("#content", foo);
//
// But this way works fine (rendering directly to a DOM element) (just // one 'show' event fires)
//foo.render('#app');
</script>
The OP's dojo sample is set to run against the latest version of kendo; when running against the previous 2019 R1 SP1 (2019.1.220) the sample behaves as expected hence this appears to be a bug introduced in release 2019 R2 (2019.2.514)