apps
latest
false
- Démarrage
- Applications de démonstration
- Comment
- Accéder à l'URL de production d'une application
- Créer une application compatible avec les appareils mobiles
- Intégrer des cartes
- Définir un contexte externe (Set External Context)
- Utiliser des tableaux pour remplir les commandes Liste déroulante, Liste déroulante à sélection multiple et Bouton radio
- Utiliser TableDonnées avec les commandes Table et Modifier la grille
- Utiliser le masque de saisie
- Notifications
- Utilisation d'expressions VB
- Concevoir votre application
- Présentation des commandes
- Mise en page et style
- Exemples de mises en page d'applications
- Commandes d'icônes
- Créer des applications accessibles
- Ajout de descripteurs accessibles
- Le libellé Accessible
- Utilisation de la commande Onglet pour l'accessibilité
- Concevoir des listes et des en-têtes accessibles
- Conception d'application réactive
- Taux de contraste des couleurs
- Prédéfinir les styles et les mappages au niveau de l'air
- Panneau Ressources (Resources)
- Exportation et importation de pages
- Références du contexte de l'utilisateur
- Applications publiques
- Enregistrer votre application
- Erreurs d’application et résolution des problèmes
- Concevoir votre application avec le Autopilot
- Événements et règles
- Règle : If-Then-Else
- Règle : ouvrir une page
- Règle : Ouvrir l'URL
- Règle : Fermer le Pop-Over/la feuille du bas
- Règle : Afficher le message
- Règle : Afficher/Masquer la roulette
- Règle : Définir une valeur (Set Value)
- Règle : Démarrer le processus
- Règle : Réinitialiser les valeurs
- Règle : Charger le fichier dans le compartiment de stockage
- Règle : Télécharger un fichier depuis un compartiment de stockage (Download File From Storage Bucket)
- Règle : Créer un enregistrement d'entité (Create Entity Record)
- Règle : Mettre à jour un enregistrement d'entité (Update Entity Record)
- Règle : Supprimer un enregistrement d’entité
- Règle : ajouter à la file d'attente (Add to Queue)
- Règle : Déclencher un workflow
- Règle : Soumettre l'action
- Tirer parti de la RPA dans votre application
- Exploitation des entités de votre application
- Exploitation des entités de votre application
- Exploitation des médias de votre application
- Exploitation des actions de votre application
- Exploitation des connexions de vos applications
- Applications Web dans Studio Web
- Gestion du cycle de vie des applications (Application lifecycle management, ALM)
- Applications propriétaires UiPath®
- Guide de dépannage de base
Important :
Veuillez noter que ce contenu a été localisé en partie à l’aide de la traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.
Guide de l'utilisateur d'Apps
Dernière mise à jour 13 déc. 2024
Procédure
To do this, you first need to prepare an entity with a Choice Set field.
- Open an existing application or create a new one.
- Add the entity containing the Choice Set field to your app:
- Select Add any, then Entity.
- Select your active tenant, then the entity containing the Choice Set field.
- Sélectionnez Ajouter.
- Add two variables to your app, and bind them to your entity and choice set:
- Select Add any, then Variable.
- Give the variable a name. Under Type, open the dropdown menu, and specify the variable type as the name of the entity you added in step 2.
- Add another variable to your app by repeating step 3a, but specify its type as
ListSource
ofChoiceSet
.
- Add a Table and Label to your app:
- Sélectionnez Ajouter une commande (Add control).
- Sélectionnez Afficher.
- Drag the Table to an area in your app.
- Add a Label to your app by repeating steps 4a and 4b.
- Configure the Table:
- In the Properties panel, under Columns, select the Delete Column button. Repeat this once to leave only one column in the Table.
- Select the Column heading field to open its properties.
- Under Name, select Column heading. The Expression editor opens.
- Replace "Column heading" with "DisplayName", then select Save.
- In the Source field, select Open resources, then Expression editor.
- Add "DisplayName", then select Save.
- Bind the Table and Label to your entity and Choice Set:
- Select the Table.
- In the Properties panel, select the Additional resources button adjacent to the Data source field.
- Select the Expression editor, then add the following:
GetChoiceSet("choice_set")
, wherechoice_set
is the name of the choice set you want to use. - Select the Label.
- In the Properties panel, select the Text field.
- Replace "Label" with the following:
MainPage.Table.DataSource.data.Count.ToString()