You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added implementation of manual field html in tag helpers, added missing prepend options to <field> and fixed bug where nested fields weren't being output from the parent field, but rather from the section
Copy file name to clipboardexpand all lines: ChameleonForms/HtmlHelperExtensions.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -246,7 +246,7 @@ public static Field<TModel> GetChameleonFormsField<TModel>(this IHtmlHelper<TMod
246
246
if(fieldisField<TModel>castedField)
247
247
returncastedField;
248
248
249
-
thrownewInvalidOperationException($"Attempted to retrieve a ChameleonForms form field instance as Field<{typeof(TModel).Name}>, but instead found a {field.GetType().Name}.");
249
+
thrownewInvalidOperationException($"Attempted to retrieve a ChameleonForms form field instance as Field<{typeof(TModel).Name}>, but instead found a {field.GetType().FullName}.");
Copy file name to clipboardexpand all lines: ChameleonForms/ServiceCollectionExtensions.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ namespace ChameleonForms
21
21
// Update all dependencies to latest versions
22
22
// Tidy up cshtml files
23
23
// Add ability to switch unobtrusive validation on/off and html5 validation on/off (<form novalidate="novalidate">) - global default with per-form override? reference ValidationHtmlAttributeProvider in documentation
24
-
// blog posts: razorgenerator, mvctestcontext, modelbindertestbase, ilmerge, client validation in aspnetcore, end-to-end test in-memory, disposablehtmlhelper, testing metadatadetailsprovider
24
+
// blog posts: razorgenerator, mvctestcontext, modelbindertestbase, ilmerge, client validation in aspnetcore, end-to-end test in-memory, disposablehtmlhelper, testing metadatadetailsprovider, docfx, tag helpers including nested children
25
25
// Generate nuget from .csproj rather than nuspec like https://github.com/LazZiya/ExpressLocalization/blob/master/LazZiya.ExpressLocalization/LazZiya.ExpressLocalization.csproj
26
26
// [Range] client validation support
27
27
// Add support for non jquery unobtrusive validation
0 commit comments