> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/powershell-universal/fr/portail/portal-widgets/dynamic.md).

# Dynamique

Le composant dynamique vous permet d'exécuter un script PowerShell pour générer des composants PSBlazor à la volée. Il est sensible au contexte.

{% hint style="warning" %}
Étant donné que les composants dynamiques exécutent PowerShell à chaque rendu, ils peuvent réduire les performances de vos applications.
{% endhint %}

Un composant dynamique est défini avec une fonction qui sera exécutée lors du chargement de l'application.

```xml
<Dynamic Function="RenderMyDynamic" />
```

Dans le composant dynamique, retournez une chaîne de caractères qui sera rendue. Elle doit être une syntaxe PSBlazor valide.

```powershell
function RenderMyDynamic {
    "<Alert Message='Cool!' />"
}
```

Si vous utilisez un composant dynamique dans un composant qui définit une variable de contexte, vous pouvez utiliser le contexte dans votre fonction. Dans cet exemple, nous avons un tableau de services qui utilise un composant dynamique dans la colonne de statut.

```markup
<Table DataSource="$Services">
    <PropertyColumn Property="Name" />
    <PropertyColumn Property="Status">
        <Dynamic Function="RenderStatusColumn" />
    </PropertyColumn>
</Table>
```

La fonction `RenderStatusColumn` sera appelée pour chaque ligne du tableau.

```powershell
function RenderStatusColumn {
    param($Context)
    
    if ($Context.Status -eq 'Running')
    {
        "<Alert Message='Started' />"
    }
    else 
    {
        "<Alert Message='$($Context.Status)' />"
    }
}
```


---

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

```
GET https://docs.devolutions.net/powershell-universal/fr/portail/portal-widgets/dynamic.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.
