All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.factoryEditing.AttributeEditorFallback.js Maven / Gradle / Ivy

export class AttributeEditorFallback {
    constructor(attributeAccessor, inputId) {
        this.attributeAccessor = attributeAccessor;
        this.inputId = inputId;
    }
    create() {
        let div = document.createElement("div");
        div.textContent = 'not editable: ' + this.attributeAccessor.getAttributeMetadata().getType();
        return div;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy