I need to sort array of this type below by any value:
var arr=[];
arr['4']={'id':'4','price':400};
arr['5']={'id':'5','price':300};
arr['1']={'id':'1','price':200};
arr['2']={'id':'2','price':100};
arr['3']={'id':'3','price':500};
|
I need to sort array of this type below by any value:
|
|||||||||||||||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
That JSfiddle was empty for me, but javascript array objects have a prototype function called sort() which would be somewhat useless in this case because you would have to create a series of reusable functions (one for each column you wanted to sort by) and pass them into the sort() method based on which column you wanted to sort by. What it looks like you need to do is create the data as a JS object with your own custom sorting function, or extend the prototype for the Array object and use that as a function for mapping your sorting.
That would be used as:
Which would then call your function and change the ordering based on price. This assumes of course that all the values of the object are numeric. If they're not, you'll have to do the rest. I'm not going to write the entire function for you, but that's how you can implement what you need. The built in sort() method won't cut it for you on its own unfortunately :P |
|||||||||||||||||
|