question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Multiple Sorted Lists on same page?

See original GitHub issue

Is 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:closed
  • Created 11 years ago
  • Comments:7 (1 by maintainers)

github_iconTop GitHub Comments

3reactions
ahmedetmancommented, May 27, 2014

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.

0reactions
ahmedetmancommented, Jan 8, 2015

@denys281 @amjo you are welcome guys 😃 👍

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found