This question is locked. New answers and comments are not allowed.
I've seen several client-side effects code snippets like the ones shown below. Where are these functions defined (eg: "$telerik.fx.slide", "$telerik.fx.rewind", "$telerik.fx.zoom", etc) ? Where can I find the documentation and code samples for these functions ? Thank you!
// default "slide" effect settingsvar fx = $.telerik.fx.slide.defaults(); $('div#contextMenu').each(function (index) { $.telerik.fx.rewind(fx, $(this).find('.t-group'), { direction: 'bottom' }, function () { $(this).remove(); }); });