I just want to hide the "click here to enter a new note ..." link when the
cases were resolved. No one can modify existing notes or create a new note
until the case was reactivated.
Thank you.

RE: How to hide "click here to enter a new note..." link in Cases ->No by MD

MD
Thu Aug 09 16:04:00 CDT 2007

Putting the following code in the Incident entitty's OnLaod event should work:

if (crmForm.all.statecode.DataValue == '0') {
//tab numbers start @ 0, so if the Notes is 3rd, it's "tab2"
crmForm.all.tab2Tab.style.display = "none";
}

else {
crmForm.all.tab1Tab.style.display = "";
}

It may need some tweaking, but that the gist of it.

HTH,

"Harry" wrote:

> I just want to hide the "click here to enter a new note ..." link when the
> cases were resolved. No one can modify existing notes or create a new note
> until the case was reactivated.
> Thank you.
>
>

RE: How to hide "click here to enter a new note..." link in Cases by Harry

Harry
Tue Aug 21 02:56:04 CDT 2007

Thanks for your help.
But it hided all the notes of the case, not disabled. I want everyone can
see but can not modify the notes if the cases were resolved.

"MD" wrote:

> Putting the following code in the Incident entitty's OnLaod event should work:
>
> if (crmForm.all.statecode.DataValue == '0') {
> //tab numbers start @ 0, so if the Notes is 3rd, it's "tab2"
> crmForm.all.tab2Tab.style.display = "none";
> }
>
> else {
> crmForm.all.tab1Tab.style.display = "";
> }
>
> It may need some tweaking, but that the gist of it.
>
> HTH,
>
> "Harry" wrote:
>
> > I just want to hide the "click here to enter a new note ..." link when the
> > cases were resolved. No one can modify existing notes or create a new note
> > until the case was reactivated.
> > Thank you.
> >
> >