Ahh, I got you. I thought you had a problem within TaffyDB itself. That is what I was trying to duplicate as I had a similar problem to what I understood...
113
Bruce
bfr348
Dec 23, 2008 10:27 pm
Just make any other column sortable; and have it actually work. For example change this: { name: "food", display: "Fruit", sortable: true}, "water", "fiber", ...
114
himebriny
Dec 26, 2008 5:45 pm
Can you have multiple collections work together? Like have a collection be a work as a table? I'm trying to set up a comic cms with one collection for...
115
tacoman_cool
Dec 26, 2008 5:51 pm
You may need to give us a little more detail, but in short you can have more than one collection and they can work together. You need to code it out in your...
116
tacoman_cool
Dec 26, 2008 7:28 pm
Ok, found the problem. The grid example uses logical sorting to simplify the code. That is fine, expect that logical sorting doesn't appear to work with...
117
himebriny
Jan 7, 2009 4:38 am
thak you for answering. I'm having trouble with javascript because I mostly program with php and that was a challenge for a 17 year old with problems paying...
118
tacoman_cool
Jan 7, 2009 4:43 am
Hey everyone, TaffyDB 1.7 is now out. You can download the latest version on TaffyDB.com Key features: * Bug Fix: Logical Sorting of numbers should now work...
119
berg.matt
Jan 7, 2009 8:59 pm
Thanks for the continued work. I look forward to trying this out on Vitalist. -Matt ... TaffyDB.com...
120
tacoman_cool
Jan 8, 2009 3:59 pm
So I wanted to throw this idea out to the group for comment. What if you combined TaffyDB and Amazon s3? What I envision is a service (call it taffyS3) that...
121
Don Smith
donwsmith@...
Jan 8, 2009 4:46 pm
Hmm, that is an interesting idea. I like it! =Don...
122
Bruce Robertson
bfr348
Jan 8, 2009 5:07 pm
... I'd like to be sure that the same methods are available to be used for other data sources....
123
martin_seidel
Jan 18, 2009 4:27 am
Hello Ian, I have tried to include TAFFYDB in a javascript CD/DVD catalogue application for the extended search part, ...
124
tacoman_cool
Jan 18, 2009 4:47 am
Hi Martin, Wow, excellent work. You got a lot of questions and I'll see if I can understand and address them. First off, about get vs find. Find returns the...
125
martin_seidel
Jan 30, 2009 8:25 pm
... Ok Ian, thanks for the info so far. I'm not sure if it makes sense to dig deeper in my application, the only taffy related part is in extendedSearch.js and...
126
tacoman_cool
Jan 31, 2009 2:05 am
I just pushed out TaffyDB 1.7.1. This is the bug fix release to deal with using multiple values and negative filters. Download:...
127
tacoman_cool
Mar 11, 2009 4:25 pm
Hey Everyone, Just a quick note to let you know I'm going to be giving a talk at JSConf2009 on TaffyDB. Was curious if any of you are going to be there. I was...
128
tacoman_cool
Mar 17, 2009 3:57 pm
Hey Everyone, I've been hard at work on a new site that uses TaffyDB. The site is called mostrecent.net and lets you build news pages in sort of a Drudge...
129
berg.matt
Mar 25, 2009 4:14 pm
Ian, I actually use TaffyDB pretty heavily on one of my sites. It is called Vitalist and can be found at http://www.vitalist.com. It is a productivity...
131
Jon Crosby
jcrosby001
Mar 26, 2009 2:39 pm
... Ian, I am using a slightly modified version of TaffyDB for CloudKit's jQuery plugin. I patched it so that callbacks were asynchronous, allowing the...
132
tacoman_cool
Mar 28, 2009 7:40 pm
Hey Matt, Very nice work on Vitalist. I just signed up and am checking out the free version. You kind of hit the Taffy nail on the head, I originally started...
133
tacoman_cool
Mar 28, 2009 7:40 pm
Very very cool work. Just walked through the file and although I don't grasp all the implications of your patches it is very fascinating. Can you tell me a...
134
Jon Crosby
jcrosby001
Mar 29, 2009 11:25 pm
On Sat, Mar 28, 2009 at 12:40 PM, tacoman_cool <ian@...> ... grasp all the implications of your patches it is very fascinating. ... changes you...
135
tacoman_cool
Mar 29, 2009 11:54 pm
Thanks for the details. Those both sound like great additions. One thing I've been thinking about is rewriting the event API to make it more flexible (and to...
136
Jon Crosby
jcrosby001
Mar 31, 2009 2:12 pm
... That would be very helpful. If one could attach more than one event and they could each be sync/async as needed, that would take care of a large number of...
137
berg.matt
Apr 13, 2009 8:22 pm
Sometimes I am using TaffyDb with some larger amounts of data, so I am always concerned with speed, and I assume speed improvements when dealing with Taffy...
138
tacoman_cool
Apr 13, 2009 8:52 pm
Hey Matt, That is an excellent suggestion. I've played around with a couple of ways of speeding up the loops before, but when the order is important you kind...
139
paulvoors
Apr 17, 2009 7:38 pm
Is there a getByIndex method for Taffydb? Such a method would be very usefull in combination with the find method. The find method returns an array of the...
140
tacoman_cool
Apr 17, 2009 7:47 pm
Actually, that is built right into .get() All of these should be valid: collection.get({field:"somevalue"}); collection.get(0); collection.get([0,1,2,3]); As a...
141
berg.matt
Apr 19, 2009 3:02 pm
I also use collection.first quite a bit with collection.find, as I am usually searching for stuff by an ID....
142
paulvoors
Apr 20, 2009 3:25 pm
That helps, thank you for the answer. But I still have a problem handling the result. Here is some code: var favorList = linksStore.get(2); ...