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; }}