Unable to see the api data from the remotefilter
I am using at.js with remoteFilter to get the data from the api and when I look at the data- the at.js is filtering the data with atwho_order:-1 . I want to turnoff the default filtering of at.js
Your issue seems to be similar to this one : https://github.com/ichord/At.js/issues/444
Thanks for responding, I had looked into the #444 but for me only partial data being visible.
If my API is responding with 100 results and I want display all them in the dropdown, but only 2 results are visible and when I debug the issue - I found that the 2 results have atwho_order:>0 and rest of the data has atwho_order:-1.
One more question: After I select the item from the dropdown- is there any way I can access the selected object instead of element.
ex: Dropdown element is `
- John, doe
- srini,lms
and the array is
[ {name:'srini',id:'1222',display:'lms'}, {name:'john',id:'333',display:'doe'} ]
and I am trying to get the {name:'srini',id:'1222',display:'lms'} object when the <li>srini,lms</li> element is selected