Versions

Added velt-data Support

Now you can render dynamic data from these Classes inside your Velt Components Wireframe:

  1. User: This represents the current logged-in user. It is available across all components.

  2. UserContact: This represents the user contact object (it has the same class like the User). It is available on the autocomplete component where the user contacts are rendered.

  3. CommentAnnotation: This represents the comment thread. This is available within the comment feature components.

  4. Comment: This represents the message inside the thread. This is available within the comment feature components.

Here is one way to use it:

<VeltData path="commentAnnotation.status.id"></VeltData>
<VeltData path="comment.commentText"></VeltData>

Was this page helpful?