0

I have to build a tab in MS Teams and I am looking for how I can have control of the button seen below:

enter image description here

By control I mean how can disable and enable accordingly.

The way Microsoft Task By Planner and To-Do have

enter image description here

JsNgian
  • 795
  • 5
  • 19
GMAC
  • 788
  • 4
  • 23

1 Answers1

1

You can enable and disable the save button by changing the setValidityState proprty of microsoftTeams.settings

For eg microsoftTeams.settings.setValidityState(false); will disable the save button and passing true value will enable it.

Thanks