cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
BobHickey
Level 4

How can I Limit Features shown in MODIFY

How can I hide a feature from displaying while in MODIFY mode? The original feature tree is fine, but in MODIFY mode, I only want the language file choices to display, allowing the adding or removal of a language. I do not want the Help, Doc, etc. features from displaing in maintenance mode.

using install scripting.

Thanks.
Labels (1)
0 Kudos
(3) Replies
MSIYER
Level 8

One way to do so:
In the OnMaintUIBefore() event, check for MODIFY. This will ensure that the install is running in Modify mode. After the check use FeatureSetData function to deselect the features you do not wish the user to see.

This will modify the tree view and the features deselected will no longer be visible.
0 Kudos
BobHickey
Level 4

Thanks. That worked perfectly.
0 Kudos
MSIYER
Level 8

Good to hear that.
0 Kudos