Type alias RowHandleProps

RowHandleProps: {
    active?: string;
    buttons?: {
        [key: string]: ButtonProps;
    };
    dropdown?: {
        more?: ButtonProps;
        [key: string]: any;
    };
    group?: {
        [groupKey: string]: {
            [buttonKey: string]: ButtonProps;
        };
    };
    show?: boolean;
    [key: string]: any;
}

操作列配置

Type declaration

  • [key: string]: any
  • Optional active?: string

    当前激活是哪个分组 默认为default,激活的buttons里面配置的按钮组

  • Optional buttons?: {
        [key: string]: ButtonProps;
    }

    操作列按钮配置

  • Optional dropdown?: {
        more?: ButtonProps;
        [key: string]: any;
    }
    • [key: string]: any
    • Optional more?: ButtonProps

      更多按钮

  • Optional group?: {
        [groupKey: string]: {
            [buttonKey: string]: ButtonProps;
        };
    }

    额外的按钮组 激活时就显示,没激活的不显示 同一时间只能激活一组

  • Optional show?: boolean

    是否显示操作列

Generated using TypeDoc