You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created custom tab called mapping in formio, now on Add workflow property button click, I need to add that value to above dropdown and clear the data from key and value.
Also after clicking on add new button only one input box should come not multiple should create.
Is there any way I can call function in angular like addProperty() after button click.
I have used form-builder for it and code is:
const newTab = {
key: 'mapping',
label: 'Mapping',
components: [
{
weight: 30,
type: 'select',
label: 'Workflow Property',
tooltip: 'Workflow Property',
key: 'workflowProperty',
input: true,
inline: true,
data: { values: workflowPropertyValues }
},
{
label: 'Create Workflow Property',
addAnother: 'Add Workflow Property',
customClass: 'pr-4 pl-4',
tableView: false,
key: 'workflowpropertycreate',
type: 'datamap',
input: true,
valueComponent: {
type: 'textfield',
key: 'value',
label: 'Value',
input: true,
hideLabel: true,
tableView: true
}
}
]
};
The text was updated successfully, but these errors were encountered:
I have created custom tab called mapping in formio, now on Add workflow property button click, I need to add that value to above dropdown and clear the data from key and value.
Also after clicking on add new button only one input box should come not multiple should create.
Is there any way I can call function in angular like addProperty() after button click.
I have used form-builder for it and code is:
const newTab = {
key: 'mapping',
label: 'Mapping',
components: [
{
weight: 30,
type: 'select',
label: 'Workflow Property',
tooltip: 'Workflow Property',
key: 'workflowProperty',
input: true,
inline: true,
data: { values: workflowPropertyValues }
},
{
label: 'Create Workflow Property',
addAnother: 'Add Workflow Property',
customClass: 'pr-4 pl-4',
tableView: false,
key: 'workflowpropertycreate',
type: 'datamap',
input: true,
valueComponent: {
type: 'textfield',
key: 'value',
label: 'Value',
input: true,
hideLabel: true,
tableView: true
}
}
]
};
The text was updated successfully, but these errors were encountered: