Hi Buvana, I found the problem is with UnobtrusiveJavaScriptEnabled set to true. It works when I set it to false. The problem is that I need it to be true because Im using unobtrusive AJAX, and it doesent work if it is false.
I had already worked it out with other controls by adding reference to ej.unobtrusive.min.js, as instructions
hereMy Layout page is:
head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/ej/flat-azure/ej.theme.css")
@Styles.Render("~/Content/ej/ej.widgets.core.css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/Scripts/jquery-3.1.1.min.js")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@Scripts.Render("~/Scripts/jsrender.min.js")
@Scripts.Render("~/Scripts/ej/ej.web.all.min.js")
@Scripts.Render("~/Scripts/ej/ej.unobtrusive.min.js")
<script src="~/Scripts/ej/i18n/ej.culture.es-ES.min.js"></script>
<script src="~/Scripts/ej/l10n/ej.localetexts.es-ES.min.js"></script>
</head>
<body>
.........
@RenderSection("scripts", required: false)
@Html.EJ().ScriptManager()
</body>
Is there any way to make rotator work with UnobtrusiveJavaScriptEnabled = true
Thank you.