Reputation: 125
I want to make a single field editable(Display mode.Edit) and make all other fields viewable (FormMode.View) in Powerapps.
Will the FormMode override DisplayMode of fields.?
In my case, when I tried, every fields get viewable when I give FormMode.View.
Upvotes: 0
Views: 6321
Reputation: 684
I know this is an old thread, but this is definitely doable. You can set your form mode to FormMode.Edit, then override the individual DataCards to DisplayMode.View instead of Parent.DisplayMode (you may need to unlock the data card):
Upvotes: 0
Reputation: 5531
You cannot override Edit mode for View mode. You will need to use disable property of each of your Field on Form to disable it (read only).
Upvotes: 1