Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

taffydb · TaffyDB Support and User Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 185
  • Category: JavaScript
  • Founded: Apr 25, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 249 - 278 of 476   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
249 test_addon May 9, 2010
4:16 pm
Hi, is there an example how grouping could be achieved. I would especially interested to see how it is possible to print a grid where the columns have group...
250 tacoman_cool Send Email May 10, 2010
4:43 pm
Thanks for the heads up on the site. The server it is on keeps crashing so I'm planning to move to a new server this week. As for your question, the data grid...
251 capitaine_minuit
capitaine_mi... Send Email
Nov 23, 2010
6:07 pm
Can TaffyDb use HTML5 localStorage? Btw, TaffyDb is a great tool, Thanks!...
252 yevgenie Send Email Nov 23, 2010
6:08 pm
Ian- Would you be open to posting the code with the indexes? I for one would find it very useful. Thanks....
253 test_addon Nov 23, 2010
6:08 pm
Yes, that is correct, it try to build a solution where I could define for both axis (column and rows) the columns in an collection. Then the function should...
254 tacoman_cool Send Email Nov 23, 2010
6:19 pm
It doesn't have a built in method but it would be very easy to do. Let's say you had a TaffyDB collection called "messages";. You could save it to local storage...
255 andrew_wc_brown Send Email Dec 10, 2010
4:47 pm
Howdy Taffiers, I using TaffyDB but the main website needs a bit of love. Anyway I can fix up this website so its as awesome as Taffy itself?...
256 tacoman_cool Send Email Dec 10, 2010
4:52 pm
That would be awesome Andrew. For everyone's information, I'm working on a 2.0 version of TaffyDB based on a recent project. It changes the API a little bit I...
257 SimLev May 23, 2011
3:31 pm
Hi there, is there a simple way to perform a search using several condition in OR in addition to AND? e.g. {name:{regex:/^Joh/i} OR lastname:{regex:/mith$/i} ...
258 taffydb-owner@yahoogr... Send Email Sep 1, 2011
11:34 pm
Finally! Over the past couple of months I've been pushing to turn the idea of TaffyDB into a full on launched app. The site is new, the API is new. In fact,...
259 onnodivider Send Email Sep 2, 2011
4:03 pm
Hi I've implemented a TaffyDB 1.7.3 and I'm converting it to 2.0, but it is slow on inserting large amounts of data. This is my setup: - Server which sends...
260 Darren Kovalchik
darren_koval... Send Email
Sep 2, 2011
4:03 pm
Awesome work Ian, looks great! Can't wait to figure out something to use it on....
261 tacoman_cool Send Email Sep 2, 2011
4:18 pm
Hi Onno, Sorry to hear about the slowness. 2.0 makes a number of changes to how data is looked up and inserted although this seems like a slowness on lookup...
262 tacoman_cool Send Email Sep 2, 2011
4:26 pm
Actually, I have one optimization that can be made right now to be more 2.0 ish. I don't think it is your speed problem though. I want to remove the "first"...
263 Don Smith
donwsmith@... Send Email
Sep 2, 2011
4:56 pm
Super awesomeness!...
264 tacoman_cool Send Email Sep 2, 2011
5:02 pm
Ok, so I may have a fix you can try out. It may take a small amount of code rework. We are basiclly going to bypass the default look up by creating an...
265 Givius
givius24 Send Email
Sep 8, 2011
4:42 pm
Hello, I just got the update from 1.7 to 2.0, and now my code is complaining about this two functions: "taffyObj.orderBy is not a function" "taffyObj.get is...
266 tacoman_cool Send Email Sep 8, 2011
4:50 pm
Hi Charly, There are a couple of key API differences between the 1.X stack and 2.0. The main one is that your DB is now a function and you use that function to...
267 onnodivider Send Email Sep 9, 2011
3:19 pm
Thanks, works like a charm! Maybe include this into Taffy by default!? Onno...
268 Givius
givius24 Send Email
Sep 14, 2011
9:57 pm
Thanks a lot for the advice I did the changes in my code and all seems to be working fine. --Charles...
269 wklau2046 Send Email Sep 19, 2011
12:34 pm
1. The "!" is not working properly, it seems that the following line is wrong: // get the match results based on the s/match type var r = ((s === "regex") ?...
270 taffydb-owner@yahoogr...
tacoman_cool Send Email
Sep 20, 2011
2:28 am
Patched in 2.2 to address these issues. 1. I found the issue with "!" and fixed it. 2. I couldn't find any issues with has. Do you have some example code of...
271 wklau2046 Send Email Sep 20, 2011
2:39 am
2. The problem is in the line: } else if (T.isArray(var2)) { each(var2, function (v, n) { re = T.has(var1, var2[n]); if (re === true) { return TAFFY.EXIT; } ...
272 tacoman_cool Send Email Sep 20, 2011
2:43 am
Ahh, thanks. I believe it is fixed in just deployed 2.2.1....
273 wklau2046 Send Email Sep 20, 2011
6:04 am
Thank you for quick response. Regarding the JSON issue, the new code is: JSON; // *** error line if (!JSON) { JSON = {}; } While this will work in newer...
274 wklau2046 Send Email Sep 20, 2011
6:17 am
In 2.2.1, now we have: case "object": if (T.isObject(var2)) { eachin(var2, function (v, n) { if (re === true && !T.isUndefined(var1[n]) &&...
275 tacoman_cool Send Email Sep 20, 2011
12:47 pm
That for the help debugging. I think both the JSON and has issues are fixed in 2.2.2....
276 wklau2046 Send Email Sep 22, 2011
11:55 pm
Sorry for not pointing out also in previous message that there is similar problem in the 3rd case for array: } else if (T.isString(var2) || T.isNumber(var2)) {...
277 tacoman_cool Send Email Sep 22, 2011
11:58 pm
I think that might be ok now that I return re at the bottom of the block. Not sure, my head kind of hurts from looking at it. Also, would you be willing to...
278 taffydb-owner@yahoogr... Send Email Sep 23, 2011
4:34 pm
So I'm pretty sure prototyping with TaffyDB is about to get a lot more fun. Here are the changes for 2.3: 1. There is now an onDBChange event so when any...
Messages 249 - 278 of 476   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help