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
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
Today the GenerateCheckbox method in our InputTagHelper is inserted into the body of the TagHelperOutput. Functionally this works but it prevents other TagHelpers from acting on the current TagHelperOutput's tagname, attributes etc. We originally built the GenerateCheckbox impl as is because we'd always generate a hidden input tag inline; now, we have access to PostElement AND we have a separate TagHelper that renders the hidden input tag.
The text was updated successfully, but these errors were encountered:
Think this is a dupe of #5902. As I mentioned in response to that bug, need to handle the !ViewContext.FormContext.CanRenderAtEndOfForm case. Guess we could instead find a way to require end of <form> rendering support.
Today the
GenerateCheckbox
method in ourInputTagHelper
is inserted into the body of theTagHelperOutput
. Functionally this works but it prevents other TagHelpers from acting on the current TagHelperOutput's tagname, attributes etc. We originally built theGenerateCheckbox
impl as is because we'd always generate a hidden input tag inline; now, we have access to PostElement AND we have a separate TagHelper that renders the hidden input tag.The text was updated successfully, but these errors were encountered: