Aswathy Santhosh
Aswathy Santhosh

Reputation: 125

Powerapps - Make a single field editable and all fields viewable in a Form

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

Answers (2)

Rishi Latchmepersad
Rishi Latchmepersad

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):

screenshot

Upvotes: 0

AnkUser
AnkUser

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).

Look into this thread.

Upvotes: 1

Related Questions