Page 1 of 2

List extension!

Posted: Mon Jun 11, 2012 10:50 pm
by Daniel Mills

I am paying you for a service that is slamming my monthly bills, and i am using this to make an application. I need a List component that can handle over 50 items. Me and my team spent hours planning this out and the list component limitation just crushed all of our ideas. Can you PLEASE fix this NOW. I need this to be fixed now! In javascript, you only have to change 2 characters in the code. Would that be a hard thing to do, even though im paying you 50/mo

also i made this post even after my first (same topic) because the other one didn't seem to get the point across


List extension!

Posted: Mon Jun 11, 2012 11:06 pm
by maxkatz

We will try to fix it this week.

You can add more items with this simple JavaScript:
code
Tiggzi('list')&#46;append('<li><a>New item<&#47;a><&#47;li>');
Tiggzi('list')&#46;listview('refresh');
/code
where 'list' is the name of the list.

There is really no need to post multiple times or tell us to fix it NOW. We reply on this forum very quickly and fix things pretty fast. If for some reason you don't like the service, you may always cancel.


List extension!

Posted: Tue Jun 12, 2012 4:15 pm
by maxkatz

We updated the number of items to 99. Does that work? Will be in production as soon as we push the release out.


List extension!

Posted: Thu Jun 14, 2012 3:33 pm
by maxkatz

It's been updated to 99 items.


List extension!

Posted: Fri Jun 15, 2012 1:32 pm
by RobertJay

Hi Max - just to clarify: how would you suggest handling a REST service which returns more than 99 items? Thanks.


List extension!

Posted: Fri Jun 15, 2012 2:38 pm
by maxkatz

If you create the list form a service, then you only need 1 list item. You will map the list to a collection, it will iterate and render all the items in the lit.


List extension!

Posted: Fri Jun 15, 2012 4:56 pm
by RobertJay

That's great Max - thanks very much.


List extension!

Posted: Wed Nov 28, 2012 11:38 pm
by tiggziuser

What do you mean by collection?


List extension!

Posted: Wed Nov 28, 2012 11:49 pm
by maxkatz

JSON collection (array)


List extension!

Posted: Wed Nov 28, 2012 11:58 pm
by tiggziuser

So we have to save the request data locally first then update the list component from the local array to show over 99 records?