The search function is the main way the user looks for content on an application.
There are different ways to model a search, each one addressing a specific user need.
One way to model a search is to filter the result using a "keyword" field. In a CRM application, an example is a company search by...
The search function is the main way the user looks for content on an application.
There are different way to model a search, each one addressing a specific user need.
One way to model a search is to filter the result using many fields. The structure of the form depends on the searched information....
In almost every Web application, users come across a form where they are supposed to fill in some information.
In WebRatio, forms are handled by a dedicated View Component named "Form".
In this lesson you learn how to use the "Form" component to model and configure a Form with Fields.
In WebRatio Platform, the state of a component is represented by the Component State Object, a particular data structure that represents the internal state of particular component. This means that each type of component has its particular Component State Object. In its implementation, a Component St...