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
Just recently discovered your tool, and so far things are looking great. I did however bump into a problem, I have a whole year's worth of data entries (about 900 entries) done with Silvio Moreto's bootstrap select, my entries look like this:
"Red,Blue,Yellow,Green"
For some reason the drop down thinks I have 20 items selected when in fact nothing is selected. From what i've noticed it seems to be counting the amount of charaters and returning the total as selected. When i select an item on the list, it will reajust and then start counting correctly.
Do I need to change my entries to the appropriate format or is there a simple way to fix this?
The text was updated successfully, but these errors were encountered:
Owizardo
changed the title
Switching from Silvio Moreto's to your version - Issues transferring existing data
Switching from Silvio Moreto's to this - Issues transferring existing data
Sep 18, 2016
What you need do is transforming your entries into array. For example, model = "Red,Blue,Yellow,Greed".split(',') then <ol class="nya-bs-select" ng-model="model" multiple> /* some nya-bs-option directive */ </ol>
Hi there,
Just recently discovered your tool, and so far things are looking great. I did however bump into a problem, I have a whole year's worth of data entries (about 900 entries) done with Silvio Moreto's bootstrap select, my entries look like this:
"Red,Blue,Yellow,Green"
For some reason the drop down thinks I have 20 items selected when in fact nothing is selected. From what i've noticed it seems to be counting the amount of charaters and returning the total as selected. When i select an item on the list, it will reajust and then start counting correctly.
Do I need to change my entries to the appropriate format or is there a simple way to fix this?
The text was updated successfully, but these errors were encountered: