This is a migrated thread and some comments may be shown as answers.

Data Transitions

1 Answer 38 Views
Sample Applications
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ganesh
Top achievements
Rank 1
Ganesh asked on 11 Jan 2016, 02:57 PM

Hi,

 

Is it possible to change data-transition value dynamically at view level or tabstrip elements ?

1 Answer, 1 is accepted

Sort by
0
Tsvetina
Telerik team
answered on 14 Jan 2016, 09:49 AM
Hello Ganesh,

You can set a transition dynamically, upon navigation, by passing the transition name as a second argument in the Application navigate method:

<div data-role="view" id="foo"><a data-role="button" data-click="navigateToSettings">Bar</a></div>
<div data-role="view" id="settings">Settings</div>
 
<script>
    var app = new kendo.mobile.Application();
 
    function navigateToSettings() {
        app.navigate("#settings", "slide");
    }
</script>


Regards,
Tsvetina
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Sample Applications
Asked by
Ganesh
Top achievements
Rank 1
Answers by
Tsvetina
Telerik team
Share this question
or