最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Set current multiple value in selectize JS - Stack Overflow

programmeradmin0浏览0评论

I have problem in selectize JS when set current value is multiple value. I set from Ajax response in Json format, here is my code.

$(".rule_list").on("click",function(e) {
        e.preventDefault();
        $.ajax({
          url: 'getruledata,
          dataType: 'json'
        })
        .done(function(data){
          console.log(data);
          $selectz[0].selectize.setValue(data[0].control_country);
        })
      });

Here my HTML code

<select id="select-country" placeholder="Pick a countries..."></select>

And here code for selectize

var $selectz = $('#select-country').selectize({
        maxItems: null,
        valueField: 'iso',
        labelField: 'nice_name',
        searchField: 'nice_name',
        options: {!! $country !!},
        create: false,
      });

Here my value format from Json response

[{"id":2,"name":"XSA 2","user_id":"3","control_device":"Mobile","control_country":"US,CA","offer_id":"2","rule_id":"1","status":"2"}]

I'm stuck in this steps, if "control_country":"US,CA" (multiple value) not working when set current value to input form, but if "control_country":"US" (single value) working correctly

I have problem in selectize JS when set current value is multiple value. I set from Ajax response in Json format, here is my code.

$(".rule_list").on("click",function(e) {
        e.preventDefault();
        $.ajax({
          url: 'getruledata,
          dataType: 'json'
        })
        .done(function(data){
          console.log(data);
          $selectz[0].selectize.setValue(data[0].control_country);
        })
      });

Here my HTML code

<select id="select-country" placeholder="Pick a countries..."></select>

And here code for selectize

var $selectz = $('#select-country').selectize({
        maxItems: null,
        valueField: 'iso',
        labelField: 'nice_name',
        searchField: 'nice_name',
        options: {!! $country !!},
        create: false,
      });

Here my value format from Json response

[{"id":2,"name":"XSA 2","user_id":"3","control_device":"Mobile","control_country":"US,CA","offer_id":"2","rule_id":"1","status":"2"}]

I'm stuck in this steps, if "control_country":"US,CA" (multiple value) not working when set current value to input form, but if "control_country":"US" (single value) working correctly

Share Improve this question asked Feb 20, 2017 at 14:40 Moch SiswantoMoch Siswanto 831 silver badge3 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You can set multiple values to selectize like this:

$selectz[0].selectize.setValue([optionid,optionid]);

So in your example it should be:

$selectz[0].selectize.setValue(["US","CA"]);

You need to use the method addItem(value, silent). As explained in the docs, addItem "selects" items, where passing true to "silent" will apply the change to the original input.

发布评论

评论列表(0)

  1. 暂无评论