I have a clarification regarding displaying static instructional text in a Constellation view.
My use case is as follows:
I have an outer view that contains a instruction text at the top.
Within the same view, I display a few fields.
After those fields, I need to display another static instruction before showing additional fields.
To achieve this, I created an inner view and configured only the instruction text in that view (no fields). However, the instruction text from the inner view is not rendering on the screen.
Additional observations:
If the inner view contains only instruction text, the view is not displayed.
If I add a property to the inner view and make it read-only, the instruction text still does not render as expected.
The instruction text is displayed only when the property is editable.
Using a paragraph/text property as a workaround is not ideal because it renders with a field label which cannot be set to be removed and field container styling box will also be there, whereas I need plain instructional text similar to section instructions.
The requirement is to display static instructional text in the middle of a view, between groups of fields, without showing a field label or editable/read-only field control.
Is there an OOTB Constellation-supported way to render static text within a view layout between fields, similar to section instructions, without requiring an actual field in the view?
First You configure A view in that You add your view name and then add the requirement fields and then after that fields create a inner view in that you can Customize your view name and then in these view you can add the additional required fields
An inner view that contains only instruction text is typically not rendered, so this is why your instruction-only child view does not appear. The OOTB pattern is to add a Text / Rich text / Instructions component directly in the view layout at the point where you want the static guidance to appear, rather than using an embedded view or a dummy property.
So yes, there is a supported way to show static instructional text between groups of fields, but it should be implemented as an explicit content component in the same view, not as a fieldless inner view.
A fieldless inner view with only instruction text does not render in Constellation, which is why your inner view stays hidden even after adding a read-only property. The correct fix is to add a Text, Rich Text, or Instructions component directly inside the same outer view layout, placed exactly where you want the message to appear, instead of creating a separate embedded view for it. This displays the text as plain instructional content, with no field label and no read-only box around it, matching the look of normal section instructions. Repeat this same component placement anywhere in the view where static guidance is needed between groups of fields.