I'd like to see more examples. For instance, in the existing grid example, I have tried to find a place to insert a statement like this but nothing I try...
Hey Bruce, So I think this is where you need to do. Mind you it has been a while since I wrote the grid example. The gridPrinter expected the element ID you...
Actually it was this that I tried. (Second set of {} ) But at any rate it illustrates why I'm asking for real working examples. var init2 = function () { ...
Tried this, including correcting unmatched brackets from your example; but it didn't work. I'd really like to see a working example. var init2 = function () { ...
You're write, although that is really only an example of how someone could build a data grid using TaffyDB. It isn't meant to be production ready code. Using...
TaffyDB seems like it ought to be getting more attention; and I still need to see more examples. I don't see activity on Twitter, which I think might help....
I agree completely. I'd love to see TaffyDB grow and see greater adoption. There are a few ways I could see that happening and all of them take a whole lot of...
For me, having it not integrated into one of those frameworks is why it is a tool I would use. Since everything else I'm using is YUI based, then I can use...
Jonathan Buford
jonb@...
Jun 12, 2009 11:23 pm
165
For me, TaffyDB/jQuery integration might work but I think instead good examples of using them together might work. FWIW my principal application of TaffyDB...
Yeah, keeping it separate is a strong selling point in my opinion, although it may reduce adoption. Unless there was interest from one of the Ajax library...
How and where will this conference talk come out? By comparison, I see that Jquery Tools has gotten quite a lot of traffic and commentary. There are several...
It doesn't. That is something I've though would be worth while to build, but I haven't had a strong enough need to do it. Typically in my apps I store the...
I'm running a design contest with my own money over at 99Designs.com in hopes that we can have a little more attractive site. If anyone wants to donate to help...
I posted through the TaffyDB site, but did not see an answer. Maybe it got lost, or Ian missed it. I would appreciate your thoughts, and perhaps inclusion of...
Hi All, I am using taffy 1.7.2 version. Can anyone let me know how to filter record between a specific range. eg: i want to filter records having price greater...
Hi all, I have a TaffyDB contained inside a complex object: var chardata = { name: 'Felonious', race_id: 1, ... weapons: [{ weapon_id: 15, }, { weapon_id: 39, ...
Hi, Can you let me know how to print array after filtering records using find function because find function returns indexes and we cant pass index to...
Hi I have 10 rows with these numbers 93.52 89.08 505.75 490.08 18500 152.15 116.10 -86.35 -75.70 -103.90 What I need it's to be able to sort them like that ...
Hi Irshad, There are three main methods that help you work with your data in TaffyDB. Find, Get, and forEach. First and Last are also version of get that only...
Hi Irshad, Find doesn't actually support what you are trying to do there, although it is hinting at syntax I'd like to support in the future. What you can do...
Hi Todd, What you are trying to do sounds reasonable. But I'd assembled your "object" first before you try and stringify. So let's say your JavaScript normally...
Don't know if it's a good practice but I do like that invoiceList=invoicesSearch.stringify(); resultData = new TAFFY(invoiceList); if ($("#field1").val() !=...