The item , I made with jqxInput, bind data with json.
my problem list are here.
1) have to get multiple valueitem. not multiple displayitem.
(http://jsfiddle.net/a2f29jpy/) <- I think that just can get display item list.
$(“#item”).jqxInput(‘val’) can get item just one thing, json item.
2) have to set multiple valueitem & show value’s displayItems
[
{value:1,display:’first’},
{value:2,display:’second’},
{value:3,display:’third’}
]
i want set my jqxinput’s values 1,2
then display on jqxinput “first, second”
$(“#item”).jqxInput(‘val’,item’) <- this method can’t support json array.
can i solve that?
thank you