Category Archives: ISV

Send Parameter From NavBarItem

Sometime we need to send parameter to our custom page from NavBarItem, but as NavBarItem does not support JavaScript property so we can pass parameter to our custom page using openIsvWin function (Unsupported) Code to create NavBarItem <NavBarItem Icon=”/_imgs/ico_18_debug.gif” PassParams=”1″ URL=”http://MyPage.aspx” Id=”MyItem”>       <Titles>          <Title LCID=”1033″ Text=”ISV Default” />      </Titles>  </NavBarItem> Paste this code on formload event navBarItem=document.getElementById(‘MyItem‘); if(navBarItem!=null)… Read more »

Add ISV Button on Entity Grid

Some of you must have faced requirement to add ISV button on Specific entity grid it can be OOB entity or custom entity. We can do this like below:  <Entity> <Grid> <MenuBar> <Buttons> <Button Icon=”/_imgs/ico_18_debug.gif” Url=”http://www.microsoft.com” WinParams=”” WinMode=”2″> <Titles> <Title LCID=”1033″ Text=”Test” /> </Titles> <ToolTips> <ToolTip LCID=”1033″ Text=”Info on Test” /> </ToolTips> </Button> </Buttons> </MenuBar> </Grid> </Entity> Hope it will… Read more »