How to display a paragraph in constellation with dynamic values in it

How to display a paragraph in constellation with dynamic values in it

@Pavanir6

Create a View and add a Rich Text field which refers the property on the clipboard that will display the value dynamically as the property is set.

@RaviChandra My requirement is i have a checkbox group which has multiple options, now when a user selects a option depending on that a paragraph should display based on the value selected above in the same screen. Can you suggest how to achieve this in Views and constellation.

@Pavanir6

Open the view in App Studio and add a Text (or Rich text) component where you want the message. Set its source to Computed value (or bind it to a string property you set in a data transform). Build the sentence by concatenating fields, for example: “Customer " + .CustomerName + " owes $” + toString(.TotalAmount) + " due on " + @DateTime.FormatDateTime(.DueDate,“MMM d, yyyy”). If you prefer placeholders, create a property like .Message and set it in a data transform using the same expression, then bind the Text component to .Message. Mark the Text as read-only and enable Rich text only if you need bold/links. Use visibility when rules to hide it if key fields are blank. Because Constellation is reactive, the paragraph updates automatically when those referenced fields change. For reuse, move the computed string to a reusable data transform or declare expression and reference it in multiple views.