Olá,
Como faço para desabilitar o botão de salvar se algum campo do formulário estiver em vazio?
Obrigado.
Solved! Go to Solution.
You should be able to resolve the script issue with this:
If(
(CountRows (DataCardValue22.Attachments) = 0));
DisplayMode.Disabled;
DisplayMode.Edit
)
Could you let me know if that works?
Thanks,
Sancho
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Hi,
You can set the DisplayMode property of the Button to
If ( IsBlank ( DataCardValueXX.Text) || IsBlank(DataCardValueYY.Text), DisplayMode.Disabled, DisplayMode.Edit))
Then add more checks with
|| IsBlank(otherDataCard.Text)
Could you please give that a try and let me know how you get on,
Thanks!
ManCat
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Oi @iAm_ManCat ,
Deu certo com os campos texto e número.
Tenho um campo que esta criado na lista do sharepoint como Opção e também um campo anexo. Para estes dois, tentei deixar apenas || IsBlank(DataCardValueXX) <sem o .Text> mas não deu certo.
Como faço para que eles também façam parte da regra que se estiverem vazios, não habilita o botão?
@iAm_ManCat consegui fazer para o campo de opção. Não estou conseguindo para o campo Anexo.
Glad to hear that you resolved the Option item, for the attachments you will need to count the number rows of attachment items (as it is a table of items) like this:
If(
/////// Previous Code for checks ////////
&&
(CountRows(DataCardValue4.Attachments)=0),
// Actions if empty
,
// Submit Action
)
Cheers,
ManCat
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Olá @iAm_ManCat.
Para desabilitar o botão enviar se não tiver nenhum anexo, criei o comando abaixo na propriedade DisplayMode do Botão mas não deu certo.
Tentei seguir como me passou mas não consegui também.
If (IsBlank (DataCardValue22.Attachments);
(CountRows (DataCardValue22.Attachments) = 0)) &
DisplayMode.Disabled &
DisplayMode.Edit
You should be able to resolve the script issue with this:
If(
(CountRows (DataCardValue22.Attachments) = 0));
DisplayMode.Disabled;
DisplayMode.Edit
)
Could you let me know if that works?
Thanks,
Sancho
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Power Apps User Groups are coming! Make sure you’re among the first to know when user groups go live for public preview.
Did you miss the call?? Check out the Power Apps Community Call here!
User | Count |
---|---|
278 | |
211 | |
77 | |
45 | |
39 |
User | Count |
---|---|
358 | |
227 | |
123 | |
72 | |
53 |