In this post, I’ll explain how to pass a model with dynamic objects to a view.
If you are new to C# 4 features like dynamic objects, ExpandoObject etc I suggest to visit below links to get familliar with the concepts. Read more
Blog on .Net, JavaScript, Web, Mobile, Integration, Cloud, IOT, Data Science, E-Health, Blockchain technologies.
In this post, I’ll explain how to pass a model with dynamic objects to a view.
If you are new to C# 4 features like dynamic objects, ExpandoObject etc I suggest to visit below links to get familliar with the concepts. Read more
In this post, I’ll explain how to post form data without refreshing a page using JQuery ajax and JSON.
Here, I assume a model is used to render form(form elements names same as model properties). Read more
When using unobtrusive validation for checkboxes, it does not validate an unchecked checkbox which is marked as required. Its a known issue. By default, all the checkbox required conditions are ignored in unobtrusive validation.
A workaround for this issue is to add a custom attribute and some code change in the unobtrusive JavaScript library. Read more