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! |
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
199 | |
178 | |
65 | |
36 | |
33 |
User | Count |
---|---|
340 | |
273 | |
114 | |
73 | |
58 |