Search the web
Sign In
New User? Sign Up
taffydb · TaffyDB Support and User Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 171 - 200 of 200   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
171
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...
tacoman_cool
Offline Send Email
Jun 17, 2009
4:47 pm
172
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...
z_mikowski
Offline Send Email
Jul 18, 2009
10:58 pm
173
New Patch against 1.7.2. Provides methods insertInto, truncate; modified remove (see prior message). Added callback stubs onInsertInto and onTruncate. 1c1 <...
z_mikowski
Offline Send Email
Jul 23, 2009
6:56 pm
174
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...
irshadansari_06
Offline Send Email
Aug 4, 2009
2:50 pm
175
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, ...
todd.chambery
Offline Send Email
Aug 4, 2009
2:50 pm
176
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...
irshadansari_06
Offline Send Email
Aug 4, 2009
2:50 pm
177
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 ...
moonpo
Offline Send Email
Aug 4, 2009
2:50 pm
178
My data was entered as text !...
moonpo
Offline Send Email
Aug 4, 2009
2:50 pm
179
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...
tacoman_cool
Offline Send Email
Aug 4, 2009
3:47 pm
180
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...
tacoman_cool
Offline Send Email
Aug 4, 2009
4:06 pm
181
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...
tacoman_cool
Offline Send Email
Aug 4, 2009
4:28 pm
182
Don't know if it's a good practice but I do like that invoiceList=invoicesSearch.stringify(); resultData = new TAFFY(invoiceList); if ($("#field1").val() !=...
Pierre-Olivier Chassay
moonpo
Offline Send Email
Aug 4, 2009
4:28 pm
183
That's certainly doable although stringify can be pretty expensive to use as part of your normal workflow. It seems to me you may want to use a little of...
tacoman_cool
Offline Send Email
Aug 4, 2009
4:49 pm
184
Thanks works properly now I filter over 850 elements in my taffydb it's even faster than the jquery plugin table sorter!...
Pierre-Olivier Chassay
moonpo
Offline Send Email
Aug 5, 2009
5:12 pm
185
Try: fruits.find({water:{gt:80}},{water:{lt:90}}); On Tue, Aug 4, 2009 at 6:18 PM,...
Jonathan Buford
jonb@...
Send Email
Aug 6, 2009
4:34 am
186
I think that did it. One problem I found was with direct assignment: Somehow saving transformed it from a TaffyDB into something else. So I cribbed a...
todd.chambery
Offline Send Email
Aug 7, 2009
3:03 pm
187
Hi, Just wondering if there's something like a save() method that does the equivalent of: skill = chardata['skills'].first({ skill_id: i }); if (!skill) { ...
todd.chambery
Offline Send Email
Aug 11, 2009
3:26 pm
188
Ahh, that would be cool. I'm trying to keep TaffyDB display/DOM agnostic. It may or may not exist for TaffyDB, but none of the features require it :-)...
tacoman_cool
Offline Send Email
Aug 11, 2009
3:50 pm
189
Hi, my first. I have a xml , jquery xmltojson parse it, and I want to convet taffy, but not work. here is my code: var geonews = $.xml2json(data); //jquery...
bigbigyuan
Offline Send Email
Aug 12, 2009
4:22 am
190
I'm not sure how xml2json works or what you end up with. TaffyDB expects an array of objects. So your data would end up being something like:...
tacoman_cool
Offline Send Email
Aug 12, 2009
4:36 am
191
Display/DOM agnostic is critical, of course. A cleaner example: table.save(key, obj); function save(key, obj) { found = this.first({ id: key }); if (!found) {...
todd.chambery
Offline Send Email
Aug 12, 2009
3:03 pm
192
... I don't know why, when I set var geonews = $.xml2json(data); //jquery code, convert xml2json data var json = new TAFFY(geonews); // taffy db code, but no...
bigbigyuan
Offline Send Email
Aug 20, 2009
4:00 am
193
Ahh, I think you need to do it a little differently. You need to do the following: $('#r2').html(dump($.xml2json(data))) Don't worry about Taffy at this point....
tacoman_cool
Offline Send Email
Aug 20, 2009
4:06 am
194
jQuery xml2json plugin here http://www.fyneworks.com/jquery/xml-to-json/...
bigbigyuan
Offline Send Email
Aug 25, 2009
2:19 am
195
Do you have a copy of the XML you are trying to convert? It is really all about data format because of the XML doesn't turn into a structured set of javascript...
tacoman_cool
Offline Send Email
Aug 25, 2009
2:31 am
196
... I cut some form xml file. <?xml version="1.0" encoding="UTF-8"?> <geo_contents transactionStatus="0" contentType="escape-simple" activityStatus="0"...
bigbigyuan
Offline Send Email
Aug 25, 2009
4:25 am
197
Hello all, The print function of taffydb freezes the browser as there is a lot of amount of records. Is there any way to break the loop for printing the table...
irshadansari_06
Offline Send Email
Sep 1, 2009
3:40 pm
198
TaffyDB doesn't officially have a print function. I assume you are trying to use the data grid example. How much data are you dealing with? How many records?...
tacoman_cool
Offline Send Email
Sep 1, 2009
4:55 pm
199
Hi All, I have a collection with objects like this { name : 'myname', categories : [1,2,4] } Now, i'd like to find every object that has any one (or more) of a...
v
kioopi
Offline Send Email
Oct 23, 2009
3:41 pm
200
Yes, I am using the print function of data grid example. I have 200 – 1000 records. Is there any way to break the loop at regular intervals while printing...
irshadansari_06
Offline Send Email
Oct 23, 2009
3:44 pm
Messages 171 - 200 of 200   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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