Save button is not getting enabled in the teams app

Suchethanath Ravindranath 1 Reputation point
2022-08-04T16:34:43.457+00:00

Here are the observations while adding the app :

From Teams Desktop app I am able to add the app to the chat, can login
From Browser Teams web app - unable to login
In any case Save button is not enabled in app and so
Unable to add it to the left panel in teams app winodow228294-teams-save-button.png

Microsoft Teams | Development
Microsoft Teams | Development
Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
Microsoft Teams | Microsoft Teams for business | Other
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. ChetanSharmamsft 1,036 Reputation points Microsoft External Staff Moderator
    2022-08-04T16:51:19.367+00:00

    Looks like you have created a configurable tab and did not configure it properly like below:
    pages.config.setValidityState(true)

    If you add this, "Save" button will be enabled.

    Reference document link:
    https://learn.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/create-tab-pages/configuration-page?tabs=teamsjs-v2


  2. Suchethanath Ravindranath 1 Reputation point
    2022-08-08T08:01:10.02+00:00

    I have a manifest file and in that I am using this static url in configuration url.

    "configurableTabs": [
    {
    "configurationUrl": "https://duspndp.centralindia.cloudapp.azure.com",
    "canUpdateConfiguration": true,
    "scopes": [
    "groupchat",
    "team"
    ],
    "context": [
    "channelTab",
    "privateChatTab",
    "meetingSidePanel",
    "meetingStage",
    "meetingDetailsTab",
    "meetingChatTab"
    ]
    }
    ],


  3. Suchethanath Ravindranath 1 Reputation point
    2022-08-10T10:38:48.55+00:00

    Yes this resolved the save button. Having a separate config page. TY


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.