Customers who do not use some features of 3.0 (e.g. Quotes, Invoices,
Contracts) would like to hide these items from the menu in order to clean up
the screen and there seems to be no easy way to do this.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/Businesssolutions/Community/NewsGroups/dgbrowser/en-us/default.mspx?mid=8209a229-545c-4ea3-8a89-0e29195a856b&dg=microsoft.public.crm

Re: Feature Request - hiding items not used on the Navigation Pane by Cozy

Cozy
Wed Jul 26 14:56:35 CDT 2006

EJG

The feature exists already - Remove security access to these areas and they
will not be visible to the users.

Regards

Cozy

"EJG" <EJG@discussions.microsoft.com> wrote in message
news:8209A229-545C-4EA3-8A89-0E29195A856B@microsoft.com...
> Customers who do not use some features of 3.0 (e.g. Quotes, Invoices,
> Contracts) would like to hide these items from the menu in order to clean
> up
> the screen and there seems to be no easy way to do this.
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow
> this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/Businesssolutions/Community/NewsGroups/dgbrowser/en-us/default.mspx?mid=8209a229-545c-4ea3-8a89-0e29195a856b&dg=microsoft.public.crm



Re: Feature Request - hiding items not used on the Navigation Pane by EJG

EJG
Wed Jul 26 15:15:01 CDT 2006

I had heard that; however, we ran into an issue where users were not able to
close opportunities. Microsoft Support informed us that user roles are
required to have at least user level read access on Quotes, Orders and
Invoices on the Sales tab a user role in order be able to close them.
Granting read access then prevents them from being hidden on left hand
Navigation Pane.


"Cozy" wrote:

> EJG
>
> The feature exists already - Remove security access to these areas and they
> will not be visible to the users.
>
> Regards
>
> Cozy
>
> "EJG" <EJG@discussions.microsoft.com> wrote in message
> news:8209A229-545C-4EA3-8A89-0E29195A856B@microsoft.com...
> > Customers who do not use some features of 3.0 (e.g. Quotes, Invoices,
> > Contracts) would like to hide these items from the menu in order to clean
> > up
> > the screen and there seems to be no easy way to do this.
> >
> > ----------------
> > This post is a suggestion for Microsoft, and Microsoft responds to the
> > suggestions with the most votes. To vote for this suggestion, click the "I
> > Agree" button in the message pane. If you do not see the button, follow
> > this
> > link to open the suggestion in the Microsoft Web-based Newsreader and then
> > click "I Agree" in the message pane.
> >
> > http://www.microsoft.com/Businesssolutions/Community/NewsGroups/dgbrowser/en-us/default.mspx?mid=8209a229-545c-4ea3-8a89-0e29195a856b&dg=microsoft.public.crm
>
>
>

Re: Feature Request - hiding items not used on the Navigation Pane by ReeceWilliams

ReeceWilliams
Wed Jul 26 18:45:02 CDT 2006


You can do it in JS, but it's not a supported customisation - if it causes
problems, you're on your own.

The script is below - drop it into your onload event.

HTH,
R.


// --- start of script
NavMenuHide("Quotes","Orders","Invoices");

function NavMenuHide()
{
if (arguments == null || arguments.length == 0) return;

var navBar = document.getElementById("crmNavBar");
if (!navBar) return;

var optionItems = navBar.getElementsByTagName("nobr");

var exitCount = 0;

for (opt=0; opt < optionItems.length ;opt++ )
{
for (a=0; a<arguments.length ;a++ )
{
if (optionItems[opt].innerText == arguments[a])
{
// --- hide the menu item
optionItems[opt].parentNode.style.display = "none";

// --- have all of the args been processed?
exitCount ++;
if (exitCount == arguments.length) return;
}
}
}
}
// --- end of script


"EJG" wrote:

> I had heard that; however, we ran into an issue where users were not able to
> close opportunities. Microsoft Support informed us that user roles are
> required to have at least user level read access on Quotes, Orders and
> Invoices on the Sales tab a user role in order be able to close them.
> Granting read access then prevents them from being hidden on left hand
> Navigation Pane.
>
>
> "Cozy" wrote:
>
> > EJG
> >
> > The feature exists already - Remove security access to these areas and they
> > will not be visible to the users.
> >
> > Regards
> >
> > Cozy
> >
> > "EJG" <EJG@discussions.microsoft.com> wrote in message
> > news:8209A229-545C-4EA3-8A89-0E29195A856B@microsoft.com...
> > > Customers who do not use some features of 3.0 (e.g. Quotes, Invoices,
> > > Contracts) would like to hide these items from the menu in order to clean
> > > up
> > > the screen and there seems to be no easy way to do this.
> > >
> > > ----------------
> > > This post is a suggestion for Microsoft, and Microsoft responds to the
> > > suggestions with the most votes. To vote for this suggestion, click the "I
> > > Agree" button in the message pane. If you do not see the button, follow
> > > this
> > > link to open the suggestion in the Microsoft Web-based Newsreader and then
> > > click "I Agree" in the message pane.
> > >
> > > http://www.microsoft.com/Businesssolutions/Community/NewsGroups/dgbrowser/en-us/default.mspx?mid=8209a229-545c-4ea3-8a89-0e29195a856b&dg=microsoft.public.crm
> >
> >
> >

Re: Feature Request - hiding items not used on the Navigation Pane by Voni

Voni
Wed Sep 27 12:21:02 CDT 2006

Can this be done to hide a menu within a quote? I have a client that will be
only using Write-In products, and wants to hide the existing products menu
option.



"Reece Williams" wrote:

>
> You can do it in JS, but it's not a supported customisation - if it causes
> problems, you're on your own.
>
> The script is below - drop it into your onload event.
>
> HTH,
> R.
>
>
> // --- start of script
> NavMenuHide("Quotes","Orders","Invoices");
>
> function NavMenuHide()
> {
> if (arguments == null || arguments.length == 0) return;
>
> var navBar = document.getElementById("crmNavBar");
> if (!navBar) return;
>
> var optionItems = navBar.getElementsByTagName("nobr");
>
> var exitCount = 0;
>
> for (opt=0; opt < optionItems.length ;opt++ )
> {
> for (a=0; a<arguments.length ;a++ )
> {
> if (optionItems[opt].innerText == arguments[a])
> {
> // --- hide the menu item
> optionItems[opt].parentNode.style.display = "none";
>
> // --- have all of the args been processed?
> exitCount ++;
> if (exitCount == arguments.length) return;
> }
> }
> }
> }
> // --- end of script
>
>
> "EJG" wrote:
>
> > I had heard that; however, we ran into an issue where users were not able to
> > close opportunities. Microsoft Support informed us that user roles are
> > required to have at least user level read access on Quotes, Orders and
> > Invoices on the Sales tab a user role in order be able to close them.
> > Granting read access then prevents them from being hidden on left hand
> > Navigation Pane.
> >
> >
> > "Cozy" wrote:
> >
> > > EJG
> > >
> > > The feature exists already - Remove security access to these areas and they
> > > will not be visible to the users.
> > >
> > > Regards
> > >
> > > Cozy
> > >
> > > "EJG" <EJG@discussions.microsoft.com> wrote in message
> > > news:8209A229-545C-4EA3-8A89-0E29195A856B@microsoft.com...
> > > > Customers who do not use some features of 3.0 (e.g. Quotes, Invoices,
> > > > Contracts) would like to hide these items from the menu in order to clean
> > > > up
> > > > the screen and there seems to be no easy way to do this.
> > > >
> > > > ----------------
> > > > This post is a suggestion for Microsoft, and Microsoft responds to the
> > > > suggestions with the most votes. To vote for this suggestion, click the "I
> > > > Agree" button in the message pane. If you do not see the button, follow
> > > > this
> > > > link to open the suggestion in the Microsoft Web-based Newsreader and then
> > > > click "I Agree" in the message pane.
> > > >
> > > > http://www.microsoft.com/Businesssolutions/Community/NewsGroups/dgbrowser/en-us/default.mspx?mid=8209a229-545c-4ea3-8a89-0e29195a856b&dg=microsoft.public.crm
> > >
> > >
> > >

Re: Feature Request - hiding items not used on the Navigation Pane by ReeceWilliams

ReeceWilliams
Wed Sep 27 18:06:02 CDT 2006

Voni,
It should work in any entity specific page.
HTH,
R.

"Voni" wrote:

> Can this be done to hide a menu within a quote? I have a client that will be
> only using Write-In products, and wants to hide the existing products menu
> option.
>
>
>
> "Reece Williams" wrote:
>
> >
> > You can do it in JS, but it's not a supported customisation - if it causes
> > problems, you're on your own.
> >
> > The script is below - drop it into your onload event.
> >
> > HTH,
> > R.
> >
> >
> > // --- start of script
> > NavMenuHide("Quotes","Orders","Invoices");
> >
> > function NavMenuHide()
> > {
> > if (arguments == null || arguments.length == 0) return;
> >
> > var navBar = document.getElementById("crmNavBar");
> > if (!navBar) return;
> >
> > var optionItems = navBar.getElementsByTagName("nobr");
> >
> > var exitCount = 0;
> >
> > for (opt=0; opt < optionItems.length ;opt++ )
> > {
> > for (a=0; a<arguments.length ;a++ )
> > {
> > if (optionItems[opt].innerText == arguments[a])
> > {
> > // --- hide the menu item
> > optionItems[opt].parentNode.style.display = "none";
> >
> > // --- have all of the args been processed?
> > exitCount ++;
> > if (exitCount == arguments.length) return;
> > }
> > }
> > }
> > }
> > // --- end of script
> >
> >
> > "EJG" wrote:
> >
> > > I had heard that; however, we ran into an issue where users were not able to
> > > close opportunities. Microsoft Support informed us that user roles are
> > > required to have at least user level read access on Quotes, Orders and
> > > Invoices on the Sales tab a user role in order be able to close them.
> > > Granting read access then prevents them from being hidden on left hand
> > > Navigation Pane.
> > >
> > >
> > > "Cozy" wrote:
> > >
> > > > EJG
> > > >
> > > > The feature exists already - Remove security access to these areas and they
> > > > will not be visible to the users.
> > > >
> > > > Regards
> > > >
> > > > Cozy
> > > >
> > > > "EJG" <EJG@discussions.microsoft.com> wrote in message
> > > > news:8209A229-545C-4EA3-8A89-0E29195A856B@microsoft.com...
> > > > > Customers who do not use some features of 3.0 (e.g. Quotes, Invoices,
> > > > > Contracts) would like to hide these items from the menu in order to clean
> > > > > up
> > > > > the screen and there seems to be no easy way to do this.
> > > > >
> > > > > ----------------
> > > > > This post is a suggestion for Microsoft, and Microsoft responds to the
> > > > > suggestions with the most votes. To vote for this suggestion, click the "I
> > > > > Agree" button in the message pane. If you do not see the button, follow
> > > > > this
> > > > > link to open the suggestion in the Microsoft Web-based Newsreader and then
> > > > > click "I Agree" in the message pane.
> > > > >
> > > > > http://www.microsoft.com/Businesssolutions/Community/NewsGroups/dgbrowser/en-us/default.mspx?mid=8209a229-545c-4ea3-8a89-0e29195a856b&dg=microsoft.public.crm
> > > >
> > > >
> > > >