Skip to main content

Class features

👉 Choose Domain model > Classes in the main menu.

Select a specific class to enable/disable features.

Note: not all features are available in all wyStack plans.

Comments​

Enabling Comments on a class allows user to chat/comment on a specific entity of the class.
In the User Interface a chatbox will appear.

You will have to implement the storage for the comments yourself using the handlers in the ISocialService.

Social Reactions​

Enabling Social Reactions on a class allows user to like/dislike/etc. a certain entity of the class.
In the User Interface a bar with possible options will appear. You can provide the options yourself using a Social Reaction declaration.

You will have to implement the storage for the social reactions yourself using the handlers in the ISocialService.

To declare social reactions:
👉 Choose Domain model > Enumerations in the main menu. Select the SOCIAL REACTIONS tab.

Entity Insights​

Provide advanced insights on a specific entity. When enabled on a specific class, the Insights panel will appear. Insights are small HTML fragments generated in your API that you can use to provide more information/statistics about a certain entity.

You will have to implement the insights yourself using the OnRequestInsights handler in the IHandlerService.

Examples:

  • Show total amount on an order, show location of the order on a map.
  • Show a chart with application usage of a specific user.
  • Show a dashboard with KPI's.

Class Insights​

Same as Entity Insights, but on class level.

Offline data​

Use in combination with the Flutter app template: specify if data should be offline available in the app.

Enable Anonymous features​

Make data in this class available for users that are not authenticated/logged on.

Enable Query list​

The wyStack grid has lots of query features that a user can use on demand. But sometimes you want to provide predefined queries. That's when you need the Enable Query List feature.

For example:

  • Show all orders with amount > $1000.
  • Show all users with role Admin.

You will have to implement the query list yourself using the OnRequestQueryList handler in the IHandlerService.

Workflow​

Assign a specific Workflow to this class. When assigned, the entity can go through the States defined on the workflow using the Actions that are also defined on the workflow.

See also: Workflows