locked
adding items to Actions on accounts form RRS feed

  • Question

  • can we add items to Actions on form of a account entity.
    Friday, May 29, 2009 6:28 AM

Answers

All replies

  • look at the ISVCONFIG.xml
    Tiaan van Niekerk http://crmdelacreme.blogspot.com Skype:tiaan.van.niekerk1
    Friday, May 29, 2009 6:41 AM
  • Hi.

    There are no supported way to do it. Possible way - is HTML Injections.

    Supported way - you can create your own menu and add menuitems trough ISV.config .
    Truth is opened the prepared mind My blog - http://a33ik.blogspot.com
    Friday, May 29, 2009 6:44 AM
    Moderator
  • ok fine. im going through that. in isv config this is the place i have added but im not able to get that item on the form

     <ActionsMenu>
                   <MenuItem Url="http://www.microsoft.com" WinMode="1">
                      <Titles>
                        <Title LCID="1033" Text="Coming Soon..." />
                      </Titles>
                    </MenuItem>
                    <MenuSpacer />
                    <SubMenu>
                      <Titles>
                        <Title LCID="1033" Text="Sub Test" />
                      </Titles>
                      <MenuItem Url="http://www.microsoft.com">
                        <Titles>
                          <Title LCID="1033" Text="Test Sub 1" />
                        </Titles>
                      </MenuItem>
                      <MenuSpacer />
                      <MenuItem>
                        <Titles>
                          <Title LCID="1033" Text="Test Sub 2" />
                        </Titles>
                      </MenuItem>
                      <MenuItem Client="Web">
                        <Titles>
                          <Title LCID="1033" Text="Web Only" />
                        </Titles>
                      </MenuItem>
                      <MenuItem Client="Outlook" AvailableOffline="true">
                        <Titles>
                          <Title LCID="1033" Text="Outlook Only" />
                        </Titles>
                      </MenuItem>
                    </SubMenu>
                    <MenuItem Client="Web">
                      <Titles>
                        <Title LCID="1033" Text="Web Only" />
                      </Titles>
                    </MenuItem>
                    <MenuItem Client="Outlook" AvailableOffline="true">
                      <Titles>
                        <Title LCID="1033" Text="Outlook Only" />
                      </Titles>
                    </MenuItem>
                  </ActionsMenu>
    Friday, May 29, 2009 6:45 AM