Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Ozgul
Partner - Contributor
Partner - Contributor

Extension Properties

Hello , 

I am trying to develop a graphic extension. I created a button in the extension properties field. When I click on the button, I want to add the dropdowns that already exist . For example, when I press the dateDropdown button, it should be added to the properties field again.However, it does not make this addition with the code below. Do you have a solution? Thank you.

 

    var addedButton = {
        type: "string",
        component: "button",
        label: "Add New Set",
        ref: "settings.Milestone.addedButton",
        action: function (data) {
            console.log(data)
            var newSettingsSet = {
                dateDropdown: dateDropdown,
                missionDropdown: missionDropdown
            };
            settingsSets.push(newSettingsSet);
            globalSettings.items.settings.items.milestones.items = settingsSets;

        }
    }
Labels (2)
0 Replies