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

ui.static.topic.defaultWizardTopicName.js Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
$(document).ready(function () {
    $(".topicName").on("change, keypress, click, input", "input", null, refreshGeneratedTopicName);
});

function extractTopicNameMetadata() {
    let topicName = $("input[name='topicName']").val().trim();
    return {
        attributes: {
            name: topicName
        }
    }
}

function validateTopicMetadata(topicNameMeta) {
    if (!topicNameMeta.attributes.name)
        return "Topic name must be specified";
    return false;
}







© 2015 - 2024 Weber Informatics LLC | Privacy Policy