add button to tasks toolbar

Respondido add button to tasks toolbar

  • segunda-feira, 10 de dezembro de 2007 20:09
     
     

    How to add button to tasks toolbar?

    I try to add the following to isv.config.xml:

     

     

    <Entity name="task">
          <ToolBar ValidForCreate="0" ValidForUpdate="1">
            <Button ToolTip="Aceitar..." Title="Aceitar..." JavaScript="accept();" />
            <ToolBarSpacer />
          </ToolBar>

    </Entity>

     

    and try with this following to


    <Entity name="task">
          <Grid>
            <MenuBar>
              <Buttons>
                <Button ToolTip="Aceitar..." Title="Aceitar..." JavaScript="accept();" />
              </Buttons>
            </MenuBar>
          </Grid>

    </Entity>
       

    but nothing happens.

Todas as Respostas

  • terça-feira, 11 de dezembro de 2007 21:48
     
     Respondido

    Did you enable ISV customizations in the web.config?

    1) Go to the web.config for the CRM website.
    2) find the following appsettings key "ISVIntegration"
    3) set it to one of the following values

    Value Description
    All Integration is turned on for both Outlook and Web clients
    None Integration is not turned on
    Outlook Integration is turned on for only the Outlook client
    OutlookWorkstationClient. Integration is turned on for only the full Outlook client
    OutlookLaptopClient Integration is turned on for only the light Outlook client
    Web Integration is turned on for only the Web client

     

    ***Please remember that by editing the web.config you are essentially restarting the CRM website so make sure no one is using CRM at the same time.