Using a dynamic data source works very well for initial input for tags on a form for adding a new record.
However, on an edit form where I have some previously entered tags to set up, new tags can not be added using the same XHR data source.
This may be related to the noted warning that
It is not possible to add tag by typing in this mode (only programmatically or using providing a data source).
I am able to type into the form, and suggestions are returned and returned correctly, but nothing happens when I click on one in the dropdown. Neither before.add nor after.add fire. The suggest dropdown simply closes.
It really should do something equivalent to the following:
inputTags.BulmaTagsInput().add([{
option.itemValue: item.id,
option.itemText: item.text
}]);
Using a dynamic data source works very well for initial input for tags on a form for adding a new record.
However, on an edit form where I have some previously entered tags to set up, new tags can not be added using the same XHR data source.
This may be related to the noted warning that
I am able to type into the form, and suggestions are returned and returned correctly, but nothing happens when I click on one in the dropdown. Neither
before.addnorafter.addfire. The suggest dropdown simply closes.It really should do something equivalent to the following: