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
As is, Bootstrap-transfer doesn't support tag values with spaces. For example, if you have the value attribute "test me" and run that through bootstrap-transfer, what you'll get is a tag that looks like this:
Test Me
And only "test" will be sent to the server.
In order to support values that have spaces, you'll need to change line 112 in bootstrap-transfer.js from:
As is, Bootstrap-transfer doesn't support tag values with spaces. For example, if you have the value attribute "test me" and run that through bootstrap-transfer, what you'll get is a tag that looks like this:
Test MeAnd only "test" will be sent to the server.
In order to support values that have spaces, you'll need to change line 112 in bootstrap-transfer.js from:
to this:
Notice the double quotes in the value= section?
Again, great plugin with just a couple of minor issues.
The text was updated successfully, but these errors were encountered: