I'm using the stepper and i don't want to display the progressbar animation since my page is reloading every 30 seconds, and it's anoying.
i tried a couple things like:
@(Html.Kendo().Stepper()
.Name("stepper")
.Animation(false) // Disable animation
.Steps(s =>
{
s.Add().Label("First Step");
s.Add().Label("Second Step").Selected(true);
s.Add().Label("Last Step").Icon("save");
})
)
also with css:
.k-stepper .k-stepper-content {
transition: none !important;
}
also with javascript:
$(document).ready(function() {
kendo.fx($("#stepper")).disable();
});
$(document).ready(function() {
var stepper = $("#stepper").data("kendoStepper");
stepper.options.animation = false;
});
Nothing is working.
i' trying to make it work in Telerik Dojo : Kendo UI Dojo
Any idea how to remove the animation?