Discussion:
Hiding Button in Toolbar
(too old to reply)
unknown
2010-03-17 09:57:22 UTC
Permalink
Hi,
I have a requirement where I need to hide
the Convert Activity button that appears
when user saves any activity.
How can i do that


Submitted via EggHeadCafe - Software Developer Portal of Choice
File-Based Cache for Web and non-Web Apps plus Extend ASP.NET 4.0 OutputCacheProvider
http://www.eggheadcafe.com/tutorials/aspnet/56161e9e-7fa3-48e8-9dfe-9f7a28f4d58e/filebased-cache-for-web.aspx
AdamV
2010-03-18 09:17:30 UTC
Permalink
You need to change the ISV config file, and make sure users have the
right permission in their roles to use ISV config changes (this actually
means you could have some people not use ISV stuff and they would still
see the button, which may not be what you need here, but is useful to
know more generally)

Adam
Post by unknown
Hi,
I have a requirement where I need to hide
the Convert Activity button that appears
when user saves any activity.
How can i do that
Submitted via EggHeadCafe - Software Developer Portal of Choice
File-Based Cache for Web and non-Web Apps plus Extend ASP.NET 4.0 OutputCacheProvider
http://www.eggheadcafe.com/tutorials/aspnet/56161e9e-7fa3-48e8-9dfe-9f7a28f4d58e/filebased-cache-for-web.aspx
David Vidmar
2010-04-09 07:49:01 UTC
Permalink
You could use JavaScript.

Here is a script that hide a button. Modify it to you needs.

// hide "create invoice"
var mb = document.getElementById("_MBprocessOrder");
if (mb != null)
document.getElementById("_MBprocessOrder").style.display = "none";


Cheers, David
Post by unknown
Hi,
I have a requirement where I need to hide
the Convert Activity button that appears
when user saves any activity.
How can i do that
Submitted via EggHeadCafe - Software Developer Portal of Choice
File-Based Cache for Web and non-Web Apps plus Extend ASP.NET 4.0 OutputCacheProvider
http://www.eggheadcafe.com/tutorials/aspnet/56161e9e-7fa3-48e8-9dfe-9f7a28f4d58e/filebased-cache-for-web.aspx
.
mscrmdude
2010-04-10 07:40:03 UTC
Permalink
On Apr 9, 5:49 pm, David Vidmar
Post by David Vidmar
You could use JavaScript.
Here is a script that hide a button. Modify it to you needs.
// hide "create invoice"
var mb = document.getElementById("_MBprocessOrder");
if (mb != null)
        document.getElementById("_MBprocessOrder").style.display = "none";
Cheers, David
Post by unknown
Hi,
I have a requirement where I need to hide
the Convert Activity button that appears
when user saves any activity.
How can i do that
Submitted via EggHeadCafe - Software Developer Portal of Choice
File-Based Cache for Web and non-Web Apps plus  Extend ASP.NET 4.0 OutputCacheProvider
http://www.eggheadcafe.com/tutorials/aspnet/56161e9e-7fa3-48e8-9dfe-9...
.- Hide quoted text -
- Show quoted text -
Note you need to hide the button for each of the activities separately
(ie. Phone, Fax, Email etc....) in the respective entities.

Loading...