close

Filter

Studio Developer Manual / Version 2107
Table Of Contents

Finally, you need to enable the new custom filter by invoking editorContext.getEnabledSearchFilterIds().push('...'), for example, in the init method of a corresponding Studio plugin.

public class FooStudioPluginBase extends StudioPlugin {

  override
  public function init(editorContext:IEditorContext):void {
    super.init(editorContext);

    <!-- 'fooFilter' is the FILTER_ID of the added filter panel -->
    editorContext.getEnabledSearchFilterIds().push('fooFilter');
  }
}
Was this article useful?

Search Results

Table Of Contents
warning

Your Internet Explorer is no longer supported.

Please use Mozilla Firefox, Google Chrome, or Microsoft Edge.