Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

50
votes
5answers
16k views

Android Endless List

How can I create a list where when you reach the end of the list I am notified so I can load more items? Thanks, Isaac
5
votes
3answers
2k views

Dependecy Injection: How To Overcome Cyclic Dependencies

Thanks for reading. I'm using Unity framework to implement dependency injection in my app (ASP.Net MVC). Sometimes there are some cyclic dependencies among services that I want to avoid. So I'm ...
4
votes
1answer
203 views

endless pages in rails 3?

I've tried following railscast 114 and several other links to get endless pages in a rails 3 app ive been building. I'm a beginner and I have followed teachmetocode's twitter replica tutorials. Which ...
2
votes
1answer
104 views

CouchDB “_changes” listener updates the doc, which triggers another change

I want to write a background program that will monitor the _changes feed of a CouchDB, and possibly update the document. The problem is that the update causes another _change, and I get an endless ...
2
votes
2answers
203 views

Ifstream infinite loop (it never seems to find the marker to stop reading)

A rather quick question... I can't figure out why this loop never ends... #include <iostream> #include <fstream> using namespace std; int main() { //[city1][city2][distance] ...
2
votes
8answers
1k views

Usability of an endless/infinite scroll

What are pros and cons of this technique (see Softfolio for an example). Two things I personally thought of are as follows: Impossible to tell someone where an item of interest is located (like, you ...
2
votes
3answers
3k views

Objective-C : Endless UIScrollView without pagingEnabled

In my iPhone app there is a scrollview pagingEnabled=NO which can contain up to 200 subviews (150 x 150) and the challenge is to do lazy loading and simulate endless scrolling (without bouncing) in ...
2
votes
1answer
1k views

How to stop endless EJB 3 timer?

I am new to EJB 3 . I use the following code to start endless EJB 3 timer then deploying it on JBOSS 4.2.3 @Stateless public class SimpleBean implements SimpleBeanRemote,TimerService { @Resource ...
2
votes
1answer
2k views

Android Endless Adapter

Im using the endless adapter http://github.com/commonsguy/cwac-endless however whenever i return false (because i dont have anymore data to append) , as stated here ...
1
vote
1answer
598 views

Endless Listview with current Async Task

I have had a good look at CWAC Endless adapter and a couple of others that do the same thing, but I cannot work out how to apply them to my current method of retrieving data, which populates 2 rows ...
1
vote
0answers
206 views

Javascript falls to endless loop when deleting a “draggable”

I am having this particular problem: When I drop a draggable onto a droppable and then delete this draggable (The draggables are "files and folders" and the droppable is "Trash Bin"), inside the ...
1
vote
1answer
125 views

How would you optimize this code for a jquery 4 slide endless crossfading slideshow?

I have created a 4 image endless slideshow, which works more or less well (code below) crossfading each image and pausing for a short period. Then repeating in an endless loop. But I noticed the ...
1
vote
5answers
432 views

While(1) in constructor or using threads?

Is it recommed to put a while loop, which never ends in a constructor? Or should I use threads to get the same result? Is it good when a constructor never terminates? Or is it more secure to avoid ...
0
votes
3answers
32 views

Endless function calling loop

I'm working on my iOS project again. However, I seem to have hit a cascading eternal loop of function calls of which I don't know why it happens. The GDB output can be viewed here: ...
0
votes
1answer
149 views

Endless Pagination Help Jquery/PHP

i am trying to code endless pagination and having a trouble $(document).ready(function(){ function lastPostFunc() { $('div#lastPostsLoader').html('<div ...
0
votes
1answer
105 views

Implementing 'Endless Page' Javascript following railscast 114

I have a simple Twitter mockup set up following rails tutorial and I'm trying to add Endless Page following this: http://railscasts.com/episodes/114-endless-page Ryan used a products page and index. ...
0
votes
1answer
115 views

endless zoom CATiledlayer iOS

Is there a way to reset your zoomlevel each time you're on a deeper zoomlevel so you can have an endless zoom? I'm trying to create a CATiledLayer where each tile has a different color and when you ...
0
votes
6answers
85 views

PHP longpolling running endlessly please help

Iam building a website with chat functionality and I need to keep track of online and offline users. For keeping track of online users I am using this table user_id | timestamp I update the ...
0
votes
1answer
40 views

$.ajax never ending loop stop

I have a html-document, in which I want to load a table from an extern html-file. In this file should be another load to the same file. When I start this, I get an enless loop. Can anybody tell me how ...
0
votes
1answer
86 views

Endless Loop Problem with foreach

Ok, i have a ENDLESS LOOP i need that loop endless nothing wrong with it! When i start that script via php script.php it works no problem, but on the second thrid and so on...run it dont works any ...
0
votes
1answer
66 views

Endless loop problem $var gets not set or dont gets updated

I call that script via HTTP, will later done with php-cli. First video encoding i get the correct duration, and right data is entered in the db, but when script gets the second video all works, only ...
0
votes
0answers
217 views

jquery endless page in rails 3 with will_paginate (railscast 114 help)

I am using will_paginate and railscast 114 in rails 3 but nothing seems to be working to allow me to make an endless scroll. Also I'm not sure if this is relevant but in railscast 114 the following ...
0
votes
0answers
131 views

Create looping slideshow in jQuery

I've searched the site for help with this, but I have been unable to locate anything that solves my problem. I need to set up a slideshow (fading in and out images) that repeats. I would use a plugin ...
0
votes
1answer
56 views

Jscrollpane - Fires a function when isAtBottom

i know that the jscrollpane fires a function when "isAtBottom" finally becomes true. But what is the name of this function respectively how can i check -> if "isAtBottom" finally becomes true ? ...
0
votes
0answers
464 views

How to create an endless gridview

in my current app I use a couple of endless lists fed by web-request. For some reasons I'd like to switch to endless grids but I failed. Can anyone provide me a tip (link to a tutorial, short example ...
0
votes
1answer
197 views

Resolve php endless recursion issue

I'm currently running into an endless recursion situation. I'm implementing a message service that calls various object methods.. it's quite similar to observer pattern.. Here's whats going on: ...
0
votes
1answer
614 views

NullPointerException using EndlessAdapter with SimpleAdapter

I am using EndlessAdapter from commonsguy with a SimpleAdapter. I can load data when I make a scroll down without problems, but I have a NullPointerException when I make a scroll up. The problem is in ...
0
votes
1answer
517 views

Bing image search like endless scroll in Flex

I want to know if there is any existing implementation of 'endless scroll' in Flex ? I searched online but I could only find implementation in Javascript. What could be the pros/cons of having an ...