hi guys..
i was trying to add a button at the first page of "Service". the code is as
follow
<Areas>
<Home code="home">
<NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
Url="http://www.msn.com" Id="navIsv1"/>
</Home>

<Workplace code="workplace"/>
<Sales code="sfa"/>
<Service code="cs">
<NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
Url="http://www.msn.com" Id="navIsv1"/>
</Service>
<Reports code="reports"/>
</Areas>

In the Home page, the new botton is fine showing up. but i don't know why i
can not see the botton in the Service page. I would like to create a link
with the Sales Literature in Sales to view all the literature in the Service
module. Does anyone get the idea how to complete it?

another quick question is what does the "PassParams="1" WinParams=""
WinMode="1" " the two paramaters mean?

many thanks

Re: ISV.config doesnot work by Support

Support
Mon Jan 17 01:39:38 CST 2005

Hello
WinMode="2" .. Modeless Window
WinMode="1" .. Modal Dialog Window
PassParams="1" only works in one of the entities and will give the primary
key of Account,.. to the new window


--
Christian Ternek

support@mscrm-addons.com
www.mscrm-addons.com
Your company for MS-CRM ADD-ONS!
GroupCalendar for MSCRM
Related Documents for MSCRM

"jerry" <jerry@discussions.microsoft.com> schrieb im Newsbeitrag
news:13C9205C-6BD8-46EA-8D04-B5444E1B4759@microsoft.com...
> hi guys..
> i was trying to add a button at the first page of "Service". the code is
> as
> follow
> <Areas>
> <Home code="home">
> <NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
> Url="http://www.msn.com" Id="navIsv1"/>
> </Home>
>
> <Workplace code="workplace"/>
> <Sales code="sfa"/>
> <Service code="cs">
> <NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
> Url="http://www.msn.com" Id="navIsv1"/>
> </Service>
> <Reports code="reports"/>
> </Areas>
>
> In the Home page, the new botton is fine showing up. but i don't know why
> i
> can not see the botton in the Service page. I would like to create a link
> with the Sales Literature in Sales to view all the literature in the
> Service
> module. Does anyone get the idea how to complete it?
>
> another quick question is what does the "PassParams="1" WinParams=""
> WinMode="1" " the two paramaters mean?
>
> many thanks



RE: ISV.config doesnot work by MattNC

MattNC
Mon Jan 17 12:05:06 CST 2005

Have you edited the web.config file to turn on ISV integration? I'm assuming
you have since you see your button in the Home page. You web.config file
should have the following line:

<add key="ISVIntegration" value="On"/>

Matt Wittemann
http://icu-mscrm.blogspot.com



"jerry" wrote:

> hi guys..
> i was trying to add a button at the first page of "Service". the code is as
> follow
> <Areas>
> <Home code="home">
> <NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
> Url="http://www.msn.com" Id="navIsv1"/>
> </Home>
>
> <Workplace code="workplace"/>
> <Sales code="sfa"/>
> <Service code="cs">
> <NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
> Url="http://www.msn.com" Id="navIsv1"/>
> </Service>
> <Reports code="reports"/>
> </Areas>
>
> In the Home page, the new botton is fine showing up. but i don't know why i
> can not see the botton in the Service page. I would like to create a link
> with the Sales Literature in Sales to view all the literature in the Service
> module. Does anyone get the idea how to complete it?
>
> another quick question is what does the "PassParams="1" WinParams=""
> WinMode="1" " the two paramaters mean?
>
> many thanks

Re: ISV.config doesnot work by daniel

daniel
Mon Jan 17 20:41:30 CST 2005

The following seems to work BUT it will simply direct you to the Sales Area
and NOT load the Sales Literature section within Service.

<Service code="cs">
<NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="Sales Literature"
Url="/sfa/home_saleslit.aspx" Id="navIsv1" />
</Service>


"jerry" <jerry@discussions.microsoft.com> wrote in message
news:13C9205C-6BD8-46EA-8D04-B5444E1B4759@microsoft.com...
> hi guys..
> i was trying to add a button at the first page of "Service". the code is
as
> follow
> <Areas>
> <Home code="home">
> <NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
> Url="http://www.msn.com" Id="navIsv1"/>
> </Home>
>
> <Workplace code="workplace"/>
> <Sales code="sfa"/>
> <Service code="cs">
> <NavBarItem Icon="/_imgs/ico_18_debug.gif" Title="ISV Test 1"
> Url="http://www.msn.com" Id="navIsv1"/>
> </Service>
> <Reports code="reports"/>
> </Areas>
>
> In the Home page, the new botton is fine showing up. but i don't know why
i
> can not see the botton in the Service page. I would like to create a link
> with the Sales Literature in Sales to view all the literature in the
Service
> module. Does anyone get the idea how to complete it?
>
> another quick question is what does the "PassParams="1" WinParams=""
> WinMode="1" " the two paramaters mean?
>
> many thanks