> For the complete documentation index, see [llms.txt](https://docs.eximee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/formularze/praca-z-komponentami-bazowymi/zasilanie-wartosciami-z-zewnetrznych-zrodel/podpiecie-suggestera-komponent-z-podpowiedziami.md).

# Attaching a Suggester - a component with suggestions

*Suggester* It is a special type of external data source used mainly for text fields. Its task is to suggest or automatically correct the value entered by the user, according to a defined algorithm. The Suggester works on the server side – when the user enters data and leaves the field, the suggester service can, for example, modify that value (enforcing a specific format, range, etc.) or suggest another one.

**Step-by-step configuration:**

1. **Selecting a component:** You need to select a component of type **Text field** (TextField), for which the suggestion or correction mechanism is to be enabled.
2. **Selecting the suggester:** In the Properties panel, you need to go to the Interactions section. In the field **External data source** you need to click **Select a service**, and then from the list of available sources select the appropriate **Suggester**. After connecting, the suggester identifier should appear in the field (e.g. its name).
3. **Automatic value update:** In the Other properties section of the text field, you need to select the option **Automatic value update** (autoServerUpdate). This setting causes the value to be sent to the server after each completion of field editing (e.g. after leaving the field or losing focus). Thanks to this, the suggester receives the value entered by the user and can return a possibly modified one. If the autoServerUpdate option is not enabled, the suggester will not work – changes to the field value will not be recorded on the server side.
4. **Completion of configuration:** After completing the configuration, save the changes. From that moment on, the text field will be linked to the Suggester. When the user enters a value and finishes editing it (e.g. moves to the next field), the suggester mechanism will process the entered value. If it requires correction, the system will automatically replace it with the suggested one (e.g. increase it to the minimum allowed value). The Suggester can also display messages to the user – for example, information about the correction made.
5. **Adjustment of messages:** If the suggester has default messages (e.g. in English), it is worth translating them into Polish. To do this, go to the **Translations** tab in the request editor and find the message keys associated with the given **Suggester**. Then add the appropriate translations into Polish.

<figure><img src="/files/faebd45b1280aa912b9603d4d205450ae4aeb55d" alt="" width="563"><figcaption><p align="center"><em><strong>Figure 1.</strong> Example of a connected suggester in Eximee Designer</em></p></figcaption></figure>

{% hint style="info" %}
Demo request: demoSuggester
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/formularze/praca-z-komponentami-bazowymi/zasilanie-wartosciami-z-zewnetrznych-zrodel/podpiecie-suggestera-komponent-z-podpowiedziami.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
