cloudscribe / cloudscribe.SimpleContent

A simple, yet flexible content and blog engine for ASP.NET Core that can work with or without a database, supports markdown or html editing
https://www.cloudscribe.com/docs/cloudscribe-simplecontent
Apache License 2.0
334 stars 65 forks source link

Content templates incorrectly handle checkboxes for boolean properties #570

Closed JimKerslake closed 1 year ago

JimKerslake commented 1 year ago

If the ViewModel has a bool property with default false, then the standard Razor Tag Helper <input asp-for="property" /> correctly renders a checkbox, but when saving it in a checked state, the property remains false in the serialized json viewmodel in cs_page.

JimKerslake commented 1 year ago

cloudscribe.SimpleContent.Web 6.0.2

JimKerslake commented 1 year ago

checkbox tag helper posts back "true,false" so far as the model binder is concerned.