Tagify select mode not working?

I was using a tagify text input, all was working fine.

I changed to “select mode” cause it’s more easier to select and now dosn’t write the values on the database.

This one was working:
<input type="text" class="form-control" id="inp_peopleTag" name="peopleTag" aria-describedby="inp_peopleTag_help" placeholder="Enter people tag" is="dmx-tagify" dmx-bind:data="scQuerypeople.data.querypeople" tag-text="namepeople" tag-value="peopleID">

This don’t work:
<input type="text" class="form-control" id="inp_peopleTag" name="peopleTag" aria-describedby="inp_peopleTag_help" placeholder="Enter people tag" is="dmx-tagify" dmx-bind:data="scQuerypeople.data.querypeople" tag-text="namepeople" tag-value="peopleID" mode="select">

Also I see no errors on the console or inspecting XHR. It’s a bug?

Thank you! :slight_smile:

Select mode set to select doesn’t send an array to the database, while the normal mode does. Probably that’s the reason you don’t see any values stored in the database.

I must be doing something wrong then. Let me show you my settings:

DB:
image

Action:

meetings table:

speakers table (the one that dosnt get values with select mode) as you can see meetingID 5 dosn’t exist or have values on this table when I used select mode:

Not sure what exactly are you trying to do there. Something seems to be wrong with your logic.
In this case you don’t need multi reference and you don’t even need a separate table when using a single value inserted …

If you insist on doing this then you can use this as a value in the insert record step: {{[$_POST.speakers]}}

1 Like

It’s just an example, im testing and learning how to do it and then do it in a more complicated real site.

Still not clear to me, I did the action with 1 insert step and did not worked (no record on the database):

Then I did the same with 2 inset steps and worked! (1 for data and title and the other for speakers):

Why? Want to learn where I fail.

Sorry i am quite confused by your explanation and what and why are you doing …
As i explained, if you want to use this with a single value then you need to do this:

If you insist on doing this then you can use this as a value in the insert record step: {{[$_POST.speakers]}}

1 Like

Sorry Teodor didn’t noticed that you posted {{[$_POST.speakers]}} instead of {{$_POST.speakers}}, tried this way and works like a charm.

Thank you so much for your patience, trying my best to learn. :pray:

1 Like