Member Junction
    Preparing search index...

    Defines standard and custom methods a component implements

    interface ComponentMethodInfo {
        customMethods: CustomComponentMethod[];
        standardMethodsSupported: {
            focus?: boolean;
            getCurrentDataState?: boolean;
            getDataStateHistory?: boolean;
            hasMethod?: boolean;
            invokeMethod?: boolean;
            isDirty?: boolean;
            print?: boolean;
            refresh?: boolean;
            reset?: boolean;
            scrollTo?: boolean;
            validate?: boolean;
        };
    }
    Index

    Properties

    customMethods: CustomComponentMethod[]
    standardMethodsSupported: {
        focus?: boolean;
        getCurrentDataState?: boolean;
        getDataStateHistory?: boolean;
        hasMethod?: boolean;
        invokeMethod?: boolean;
        isDirty?: boolean;
        print?: boolean;
        refresh?: boolean;
        reset?: boolean;
        scrollTo?: boolean;
        validate?: boolean;
    }