ICommandSetExtensionManifest interface

This is the manifest for a client-side extension that defines a set of custom commands that can be shown in a menu, tool bar, etc.

Extends

Properties

extensionType

Specifies the type of client-side extension. Some extension types support additional manifest fields beyond SPClientSideExtensionManifest.

items

A table of items defined by this command set. The object key is the Item ID.

Property Details

extensionType

Specifies the type of client-side extension. Some extension types support additional manifest fields beyond SPClientSideExtensionManifest.

extensionType: 'ListViewCommandSet';

Property Value

'ListViewCommandSet'

items

A table of items defined by this command set. The object key is the Item ID.

items: {
        [itemId: string]: ICommandDefinition;
    };

Property Value

{ [itemId: string]: ICommandDefinition; }

Remarks

The Item ID is a unique identifier that event handlers use to recognize the command The identifier must consist of upper-case letters, numbers, and underscores. Example: "SHOW_INFO"