# Events

An Event is an action that occurs as a result of a user's interaction with the application.

***

### Event Types

There are 3 types of Events in Stadium:

1. Load - when a page loads\
   Available to:
   * [Page](/features/pages.md)
2. Item Load - when a list item loads\
   Available to:
   * [Repeater](/controls/repeater.md)
3. Click - when a user clicks on a control or a specific part of a control\
   Available to:
   * [Button](/controls/button.md)
   * [Data Grid](/controls/data-grid.md)
   * [Image](/controls/image.md)
   * [Link](/controls/link.md)
4. Change - when a user changes the state of a control, e.g. selects a different value\
   Available to:
   * [Checkbox](/controls/checkbox.md)
   * [DatePicker](/controls/date-picker.md)
   * [DropDown](/controls/drop-down.md)
   * [RadioButtonList](/controls/radio-button-list.md)

[Event Handlers](/features/scripts-and-event-handlers.md) are set up to deal with Events.


---

# Agent Instructions: 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:

```
GET https://docs.stadium.software/features/events.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
