Discussion:
Button Text not showing :Too many items in Oppurtunity Menubar
(too old to reply)
unknown
2010-04-08 10:29:45 UTC
Permalink
Hi,
It is indeed necessary for me to display the Text for all the buttons. But, there exist a lot many and CRM is hiding the text.
How can i tackle this?

How can MenuITem be useful (if at all.)?

Thanks.


Submitted via EggHeadCafe - Software Developer Portal of Choice
WPF Report Engine, Part 2
http://www.eggheadcafe.com/tutorials/aspnet/0ad2fa61-7f0c-485f-92c9-cf3a9ee210a7/wpf-report-engine-part-2.aspx
David Vidmar
2010-04-09 07:40:01 UTC
Permalink
You could try hiding toolbar buttons you don't need using JavaScript.

This code will hide "Create Invoice" button on "Order" entity form.

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

To find out the ID of button you want to hide, open the form, press F12 then
use "Select Element by Click" feature.

Cheers, David
Post by unknown
Hi,
It is indeed necessary for me to display the Text for all the buttons. But, there exist a lot many and CRM is hiding the text.
How can i tackle this?
How can MenuITem be useful (if at all.)?
Thanks.
Submitted via EggHeadCafe - Software Developer Portal of Choice
WPF Report Engine, Part 2
http://www.eggheadcafe.com/tutorials/aspnet/0ad2fa61-7f0c-485f-92c9-cf3a9ee210a7/wpf-report-engine-part-2.aspx
.
Loading...