Why is there no DesignXplorer option in the Workbench Simulation 10.0 Project page?
I was able to reproduce this in-house and this doesn't require any license at all.


The problems are the checks in the project page `CanDoDX` and `CanViewDX` in Contexts.xml.
These verify that a DX license exists, however, the checks are not valid for the DesignXplorer Parameter Manager.

We don`t attempt to checkout a license once in DX for this capability, but the functions that control the visibility of the item in the project page don`t allow the user to enter DX in this case`

The user should be able to fix this by adjusting the Contexts.xml file under [InstallDir]AISOLStartPageStartPagesxml.
They simply need to remove the line below:

<visibilityCallback objectId="50" methodName="CanDoDX" />



<group stringid="ID_SIMULATION_TASKS_GROUP_NAME" collapsed="false">
<visibilityCallback objectId="10" methodName="isSimulationSelected"/>
<visibilityCallback objectId="10" methodName="isAppIdle"/>
<visibilityCallback objectId="10" methodName="doesFileExist"/>
<task stringid="ID_OPEN_SIMULATION_TASK" icon="../../../ComponentIcons/DS.gif"><actionCallback objectId="10" methodName="OpenSelectedProjectItem"/>
<enableCallback objectId="50" methodName="CanViewDS"/>
</task>
<task stringid="ID_CREATE_DX_WHATIF_DESIGN_TASK" icon="../../../ComponentIcons/DX.gif">
<actionCallback objectId="10" methodName="onNewWhatIfDX" />
*remove this line ----> <visibilityCallback objectId="50" methodName="CanDoDX" /> <----- <------**************
</task>
<task stringid="ID_CREATE_DX_MONTECARLO_ANALYSIS" icon="../../../ComponentIcons/DX.gif">
<actionCallback objectId="10"methodName="onNewMonteCarloDX" />
<visibilityCallback objectId="50" methodName="CanDoDX" />
<visibilityCallback objectId="50" methodName="CanDoBetaFeature" />
</task>
<task stringid="ID_CREATE_DOE_DESIGN_TASK" icon="../../../ComponentIcons/DX.gif">
<actionCallback objectId="10" methodName="onNewDX"/>
<visibilityCallback objectId="50" methodName="CanDoDX"/></task>
<task stringid="ID_CREATE_HIGH_PERFORMANCE_DOE_DESIGN_TASK" icon="../../../ComponentIcons/DX.gif">
<actionCallback objectId="10" methodName="onNewHighPerformanceDX"/>
<visibilityCallback objectId="50" methodName="CanDoDXVT"/>
</task>
<task stringid="ID_CREATE_NEW_AIE_TASK" icon="../../../ComponentIcons/AIE.gif">
<actionCallback objectId="10" methodName="onNewAIEMeshFromDS"/>
<visibilityCallback objectId="10" methodName="CanDoAIE"/>
</task>
</group>





Show Form
No comments yet. Be the first to add a comment!