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
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
277 | |
254 | |
87 | |
38 | |
34 |
User | Count |
---|---|
342 | |
246 | |
128 | |
73 | |
44 |