What happened to CustomUpdateHeaders? #5974
-
|
In Nova 3 you could override a component called CustomUpdateHeader that was an empty component placed on top of the Update form. How can I add custom content to the Update form header in nova 4? |
Beta Was this translation helpful? Give feedback.
Answered by
andypooletrioteca
Oct 19, 2023
Replies: 1 comment
-
|
I converted my CustomUpdateHeader into a custom panel with a custom field component. I had to mark it as readonly and implement the fill function and some other stuff so that the form would get stored correctly. Check the implementation of |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
andypooletrioteca
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I converted my CustomUpdateHeader into a custom panel with a custom field component. I had to mark it as readonly and implement the fill function and some other stuff so that the form would get stored correctly. Check the implementation of
nova/resources/js/fields/Form/HeadingField.vuefor more.