How to combine MultiSelectInput and SimplePicker to show the Tags using AIKAU(1.0.100)

96 Views Asked by At

enter image description hereI have added MultiSelectInput in SimplePicker to show the Tags from the repository.I need to keep OK button beside textbox and ,if any tags not found ,user will click ok button and created tag should be displayed in the same pane(leftside).so user will click + button in the left side and move it to right side pane.

above screenshot will give you exact requirement.

name: "alfresco/forms/controls/MultiSelectInput",
                                                           config: {
                                                               name: parameter,
                                                               label: label,
                                                               width: "400px",
                                                               addedAndRemovedValues: true,
                                                               valueDelimiter: ",",
                                                               optionsConfig: {
                                                                   labelAttribute: "name",
                                                                   queryAttribute: "name",
                                                                   valueAttribute: "nodeRef",
                                                                   publishTopic: "ALF_CRUD_GET_ALL",
                                                                   publishPayload: {
                                                                       url: "/slingshot/datalists/lists/node/workspace/SpacesStore/" + uuid,
                                                                       resultsProperty: "response.datalists"
                                                                   },
                                                                   searchStartsWith: true
                                                               }
                                                           }
0

There are 0 best solutions below