*fieldNameActual |
Use to specify the field on the form page to
populate the type(s) the user selects in the Type Chooser. The system
populates the specified field with the actual Type names, as stored in
the database, so the field must be a hidden field. When calling the Type
Chooser using a RangeHref on a configurable Form page, the hidden field
is created automatically and has the same name as the RangeHref field. Other
pages that need to get the type name selected by the user, for example
to perform a search, should get the type name from this field instead
of the fieldNameDisplay. |
The name of a hidden field on the form page.
For example, if the form page contains a field defined as follows: <input type="hidden"
name="txtSelectedTypeName"
value="">
This parameter should be passed to emxTypeChooser.jsp: fieldNameActual=txtSelectedTypeN
ame
|
*fieldNameDisplay |
Use to specify the text field on the form page
to populate the type(s) the user selected in the Type Chooser and display
these types to the user. When calling the Type Chooser using a RangeHref
on a configurable Form page, the display field is created automatically
and has the same name as the RangeHref field with "Display" appended
to it. This field contains the internationalized version of the
selected type list. |
The name of a non-hidden field on the form page.
For example, if the form page contains a field defined as follows: <input type="text"
name="txtType" value=""
onClick="showTypeChooser()">
This parameter should be passed to emxTypeChooser.jsp: fieldNameDisplay=txtType
|
ExclusionList |
Use to define the types to exclude from the
top-level list of types that display when the Type Chooser opens. If neither InclusionList nor ExclusionList are specified, then all types are listed. The chooser displays all types in the top level
of the hierarchy, even when Top Level Only is unchecked. |
a properties file key If
the SuiteKey parameter is passed in, the system looks for the key in
the application-specific properties file (for example, emxEngineeringCentral.properties).
If the property is not application specific, the system looks in emxSystem.properties.
For example, if emxEngineeringCentral.properties contains this property: eServiceEngineeringCentral.Types=type_Part,type_ECR,type_Sketch |
formName |
Use to specify the name of the form that holds
the field specified in fieldNameDisplay. If this parameter is not passed
in, the Type Chooser looks for the field name on the first form of the
form page. If the field name is not found in the first form, then an
error message will be presented. |
The name of a form on the form page. For example,
if the form page contains a form defined as follows: <form name="searchPage"
method="post"
action="somejsp.jsp">
This parameter should be passed to emxTypeChooser.jsp: formName=searchPage
|
frameName |
Use to specify the name of the frame that contains
the form on the form page. Needed for pages that contain forms in multiple
frames. |
The name of a frame on the form page. |
InclusionList |
Use to define the top-level list of types to
display when the Type Chooser opens. Note that these types do not have
to be top-level types (types with no parents), they will just be listed
in the top level in the chooser. If neither InclusionList nor ExclusionList are specified, then all types are listed. The chooser
displays all types in the top level of the hierarchy, even when Top Level
Only is unchecked. |
a properties file key If the SuiteKey
parameter is passed in, the system looks for the key in the application-specific
properties file (for example, emxEngineeringCentral.properties). If the
property is not application specific, the system looks in emxSystem.properties.
For example, if emxEngineeringCentral.properties contains this property: eServiceEngineeringCentral.Types=type_Part,type_ECR,type_Sketch The
parameter to pass would be InclusionList=eServiceEngineeringCentral.Types a
comma delimited list of symbolic names for the types to include: InclusionList=type_Part,type_ECR
|
ObserveHidden |
Determines whether or not to display hidden
types. |
true (default)--Hidden types are not included
in the chooser's list of types. false--Hidden types are included. |
ReloadOpener |
Determines whether to call a reload() method
on the opener/parent page (the form page from which the chooser is launched).
Reloading the page updates other fields on the form page based on the
type(s) selected from the Type Chooser. The method should be a JavaScript
function stored in the header section of the JSP or HTML page. |
true--The reload method is called. false
(default)--The reload method is not called. |
SelectAbstractTypes |
Determines whether users can select abstract
types. |
true--Abstract types can be selected. false
(default)--Abstract types cannot be selected but they are displayed in
the hierarchical list of types. |
SelectType |
Determines whether the Type Chooser has single
select radio buttons or multi-select check boxes. |
multiselect--Users can choose multiple types
using check boxes. singleselect (default)--Users can choose only
one type using a radio button. |
ShowIcons |
Determines whether to display types icons in
the Type Chooser. |
true (default)--Type icons are displayed. false--Type
icons are not displayed. This improves performance. |
SuiteKey |
Determines which application's properties file
to look in for the key specified in the InclusionList or ExclusionList
parameter. If the SuiteKey is not passed in, emxSystem.properties is
used. |
Possible values for the SuiteKey parameter are:
eServiceSuiteTeamCentral, eServiceSuiteEngineeringCentral, eServiceSuiteProgramCentral,
or any other suite name. |
*Required Setting |