Is there a way to change the default 200ms fade:in modal view animation or disable it entirely? I tried manually setting the kendoMobileModalView's shim options but to no avail.
function
btnShowModalView_Click(e) {
var
mv = $(
"#mvComposer"
).data(
"kendoMobileModalView"
);
//look under the hood of kendoMobileModalView
//console.log(mv);
mv.shim.options.duration = 200;
mv.shim.options.effect =
"slide:up"
;
mv.open();
}