apps
latest
false
- Introdução
- Aplicativos de demonstração
- Como fazer
- Acessar o URL de produção de um aplicativo
- Crie um aplicativo compatível com dispositivos móveis
- Incorporar mapas
- Definir contexto externo
- Use matrizes para preencher os controles Lista suspensa, Lista suspensa multiseleção e Botão de rádio
- Usar TabelaDeDados com controles de Tabela e de Editar Grade
- Usar máscara de entrada
- Notificações
- Uso de expressões VB
- Desenvolvimento de aplicativos
- Projetando seu aplicativo com o Autopilot
- Eventos e Regras
- Regra: If-Then-Else
- Regra: abrir uma página
- Regra: Abrir o URL
- Regra: fechar planilha pop-over/inferior
- Regra: mostrar mensagem
- Regra: exibir/ocultar o controle giratório
- Regra: definir valor
- Regra: iniciar o processo
- Regra: redefinir valores
- Regra: upload de arquivo no compartimento de armazenamento
- Regra: baixar arquivo do bucket de armazenamento
- Regra: criar registro de entidade
- Regra: atualizar registro de entidade
- Regra: excluir registro da entidade
- Regra: adicionar à fila
- Regra: fluxo de trabalho de gatilho
- Regra: enviar ação
- Aproveitamento do RPA no aplicativo
- Aproveitamento de entidades no aplicativo
- Aproveitando filas em seu aplicativo
- Aproveitamento da mídia no aplicativo
- Aproveitamento de ações no aplicativo
- Aproveitando conexões em seus aplicativos
- Aplicativos da Web no Studio Web
- Gerenciamento do ciclo de vida do aplicativo (ALM)
- Apps da UiPath®
- Guia básico de solução de problemas
Procedimento
Importante :
A tradução automática foi aplicada parcialmente neste conteúdo.
A localização de um conteúdo recém-publicado pode levar de 1 a 2 semanas para ficar disponível.
Guia do usuário do Apps
Última atualização 13 de dez de 2024
Procedimento
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.
- Selecione Adicionar.
- 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:
- Selecione Adicionar controle.
- Selecione Exibir.
- 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()