Hi,
This is something i tried for setting all the fields within a tab as read only or disabled !
// get the div element corresponding to tab, first tab would have index Tab0, second as Tab1 and so on ..
var el=document.getElementById(‘Tab2’);
// create a recursive function
function toggleDisabled(el) {
try {
el.disabled = el.disabled ? false : true;
}
catch(E){}
if (el.childNodes && el.childNodes.length > 0) {
for (var x = 0; x < el.childNodes.length; x++) {
toggleDisabled(el.childNodes[x]);
}
}
}
// call the function
toggleDisabled(el);
To hide and setting a parituclar tab as default
http://mscrm4ever.blogspot.com/2008/09/crm-40-tab-how-to-tips.html
Bye…
Hi
I have a requirement of displaying event in calendar in Dyanmics CRM 4.0. For Event entity I have rename the campaign entity to event so is there any possible ways to show event proposed start date and end date in existing calendar or do i need to create a new calendar and add it to CRM.
my email id is rajeshsinha24@ymail.com
Plz help.
LikeLike