Multiple Sorted Lists on same page?
See original GitHub issueIs is possible to have multiple sorted lists on the same page? If so how?
This does not seem to work, even if I seperate the valueNames for each new List?
http://jsfiddle.net/infatti/72QPC/
var options1 = {
valueNames: [ 'ID', 'Type', 'Task', 'Project', 'Region', 'Market', 'DueDate' ]
};
//sorter 1 ---------------------------------------------
var sortedList1 = new List('sorter-1', options1);
//sorter 2 ---------------------------------------------
var sortedList2 = new List('sorter-2', options1);
Issue Analytics
- State:
- Created 11 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Merge K sorted linked lists | Set 1 - GeeksforGeeks
The idea is to pair up a sorted list after which K/2 list will be left to be merged and repeat this till...
Read more >Merge K (Multiple) Sorted Lists - Description - AlgoDaily
You're given an array of multiple sorted linked lists. ... We need something that is built to process and order elements one by...
Read more >Merge k Sorted Lists - LeetCode
Merge k Sorted Lists - You are given an array of k linked-lists lists, each linked-list is sorted in ascending order. Merge all...
Read more >c# - Pagination of multiple sorted lists - Stack Overflow
3 Answers 3 · Figure out which item should appear first on the page (specifically what is the index of the list that...
Read more >Merge K Sorted Lists - Divide and Conquer Approach - YouTube
This question is asked at many top tech companies including Amazon, ... By the end of merging all lists, we should have one...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
you can write a code like this one , it would solve your issue. the idea is to make a main search input text and link it to the other lists container search fields http://codepen.io/anon/pen/sdrHu I hope this helps.
@denys281 @amjo you are welcome guys 😃 👍