survey-creator-core
Version:
A framework-independent core package of the SurveyJS Survey Creator component. With Survey Creator, you can visually design complex, interactive JSON forms and surveys in a drag-and-drop interface.
15 lines (14 loc) • 611 B
TypeScript
import { QuestionMatrixDropdownModel, QuestionMatrixModel } from "survey-core";
import { ISurveyCreatorOptions } from "../creator-settings";
import { PropertyEditorSetupValue } from "./index";
export declare class CellsEditor extends PropertyEditorSetupValue {
matrix: QuestionMatrixModel;
private editMatrixValue;
constructor(matrix: QuestionMatrixModel, options?: ISurveyCreatorOptions);
protected getSurveyJSON(): any;
protected getSurveyCreationReason(): string;
get editMatrix(): QuestionMatrixDropdownModel;
apply(): boolean;
private buildColumns;
private buildRows;
}