Tech Support > Microsoft Windows > Windows CRM > Remove Convert Activity from Appointment
Remove Convert Activity from Appointment
Posted by Sixty4 on June 16th, 2008


Is it possible to remove the Convert Activity tool bar item from the
Appointment Activity Tool bar? I do not see this in the isv,config?

Posted by Jevgenij Martynenko on June 16th, 2008


Hi,

You would need to use OnLoad event of the Form and do some scripting.
Use IE Developers Toolbat to find the id of the button, and put
buttonId.style.display = 'none'; in Onload event.

Hope this helps,
Jevgenij

"Sixty4" <bradlaw@gmail.com> wrote in message
news:71f3cb9c-325d-437e-b562-2d07bc613f06@v1g2000pra.googlegroups.com...

Posted by Sixty4 on June 16th, 2008


Thanks I got it, it was an easy one. convertActivity.

Posted by Sixty4 on June 17th, 2008


I have an issue. The convertActivity button is only available when the
Appointment form is saved. Can JS check for the availability of the
button before hiding it? I am getting an object error that it does not
exist on form load, after I save it it does work?

Posted by Jevgenij Martynenko on June 18th, 2008


if (document.all('buttonId') != null) buttonId.style.display = 'none'

"Sixty4" <bradlaw@gmail.com> wrote in message
news:99eb5671-0680-48e0-b3f8-6edb33e0951a@h1g2000prh.googlegroups.com...

Posted by Sixty4 on June 18th, 2008


Thanks!