It would be helpful if the following two options are added to the Telerik ASP.NET Core MVC Application VS template:
1. An option to enable Authorization in the project. It can be enabled in the default ASP.NET Core Web Application, but there is no option to do so in Telerik's template.
2. An option to choose whether CDN will be used for the Kendo UI client resources, or the required files will be registered locally.
When certain options of the editable Window are set through configuration, they are not being serialized correctly:
MinWidth
MinHeight
Events (Open, Close, etc.)
Hello,
Object doesn't support property or method 'syncReady' I am getting this error and not able to resolve that issue. I am using visual studio core and imported Telerik.ui.for.aspnet.core.trial. I also imported the js of Kendo.Ui.Core . but not able to resolve the issue. Please help
Thanks
@page@model IndexModel@{ ViewData["Title"] = "Home page";}<form class="form-horizontal" method="post"> <h4>Standard textbox:</h4> @Html.TextBoxFor(m => m.Candidate.CandidateId) <h4>Kendo textbox:</h4> @Html.Kendo().TextBoxFor(model => model.Candidate.FirstName) <div class="form-group"> <div> <button type="submit" class="btn btn-default">Submit</button> </div> </div></form>public class IndexModel : PageModel{ [BindProperty] public CandidateViewModel Candidate { get; set; } public void OnGet() { } public void OnPost() { ViewData["firstname"] = $"{Candidate.FirstName}"; ViewData["candidateid"] = $"{Candidate.CandidateId}"; }}public class CandidateViewModel{ [Key] [Display(Name = "Candidate ID")] public int CandidateId { get; set; } [Required] [Display(Name = "First Name")] public string FirstName { get; set; }}