Buenos dias,
He personalizado un formulario con powerapps, pero quiero que el Label con la fecha no se pueda modificar por el usuario.
Anexo el formulario personalizado, donde muestra dicho formulario.
Agradezco su ayuda
Solved! Go to Solution.
If you don't want the date to be editable, you can change the DisplayMode property of the card for the 'Fecha de Ingreso' field to 'DisplayMode.View', as shown below (you may need to unlock the card first to change that property, by going to the advanced view in the property panel on the right):
Notice that the form is shown both when you're editing existing items and when you are adding new items. If you want to have the date editable for new items, you can use the expression below:
If(Parent.Mode = FormMode.New, DisplayMode.Edit, DisplayMode.View)
One more thing: if you're editing the app in a browser with Spanish settings, you'll need to replace the ',' with ';':
If(Parent.Mode = FormMode.New; DisplayMode.Edit; DisplayMode.View)
Hope this helps!
Is @CarlosFigueira 's suggestion solve your issue?If yes, please accept it as solution.
More information:
Best Regards.
Yumia
If you don't want the date to be editable, you can change the DisplayMode property of the card for the 'Fecha de Ingreso' field to 'DisplayMode.View', as shown below (you may need to unlock the card first to change that property, by going to the advanced view in the property panel on the right):
Notice that the form is shown both when you're editing existing items and when you are adding new items. If you want to have the date editable for new items, you can use the expression below:
If(Parent.Mode = FormMode.New, DisplayMode.Edit, DisplayMode.View)
One more thing: if you're editing the app in a browser with Spanish settings, you'll need to replace the ',' with ';':
If(Parent.Mode = FormMode.New; DisplayMode.Edit; DisplayMode.View)
Hope this helps!
Is @CarlosFigueira 's suggestion solve your issue?If yes, please accept it as solution.
More information:
Best Regards.
Yumia
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 |
---|---|
203 | |
187 | |
81 | |
50 | |
37 |
User | Count |
---|---|
290 | |
244 | |
122 | |
74 | |
55 |