Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say in a view I have a DojoX Mobile ListItem that is pulling an HTML view fragment into the DOM via AJAX and then transitioning to that view. Assume this is all working fine.

Now, I go back to the initial view that had that ListItem on it and click some other button that destroys that view node from the DOM. If I now click on that ListItem that previously loaded that view node into the DOM (which has now been removed), it will try to transition to a view that doesn't exist. It doesn't know that it has been removed.

Is there some type of way to tell a ListItem that it needs to fetch the HTML again because what was previously fetched no longer exists? I am not seeing anything about doing this in any documentation anywhere. I don't think a code sample is really necessary here, but I can provide a minimal one if necessary.

share|improve this question
i find it a bit odd that you'd want to delete something 'manually' in a view. But think you need to _not destroy the DOM but instead from the parent of ListItem in question, remove said child item. Ok, so your view will vanish - maybe thats not what you want, then instead of removing the DOM/child, simply call ListItem.set("href", "newcontentsurl") – mschr May 24 '12 at 16:19
I wanted to remove the entire view from the DOM that was loaded via AJAX from a ListItem because the view has data in it only available after signing in. So a user clicks "Sign Out" and the view that was created after they signed in would be destroyed. But the ListItem doesn't know that an HTML view fragment that was previously loaded and since destroyed isn't available to transition to. – mccrager Jun 1 '12 at 13:17

2 Answers

up vote 0 down vote accepted

I went a different route and left the view exist in the DOM, and simply made a function that clears all sensitive data out of the view.

share|improve this answer
in general it would be acceptable to do a page reload after sign-in/-out. this way your serverside decides which information is valid for showing using the loginsession. but im sure you would have reasons for not doing this :) – mschr Jun 1 '12 at 13:55
There is no server side, it's a mobile app that is completely client side. There are no page reloads, either. It loads a single HTML page and then that AJAX loads all necessary view fragments into to the DOM. – mccrager Jun 1 '12 at 14:14
AJAX requests are still considered serverside, i get where youre coming from have spent last 4 months on a similar app in Sencha Touch :) However, the application login in my apps are allways 'something standalone' with the meaning 'all data are dirty after login/out' and that main container needs to be reloaded - hence a page refresh – mschr Jun 1 '12 at 14:44

Okay, in this case, i guess you could hook the onShow function of your ListItem container(or any other onchange event). Create a listener for said handle to evaluate if your item needs reloading. Following is under the assumtion that it is the item.onclick contents showing - and not the label of your item which contains these informations

Or better yet, do all this during initialization so that your ListItem container will be an extended with custom onClick code.

Seems simple but may introduce some quirks, where/when/if you programatically change to this item, however here goes:

function checkItem() {
    // figure out if DOM is present and if it should be
    if( isLoggedIn() ) {
       this.getChildren().forEach(function(listitem) {
        if( dojo.query("#ID_TO_LOOK_FOR", listitem.domNode).length == 0 ) {
           // this references the listItem, refresh contents.
           // Note: this expects the listitem to be stateful, have no testing environment at time being but it should be
           listitem.set("url", listitem.url);
        }


       });
    }
}

Preferably, set this in your construct of the container for your ListItems

var listItemParent = new dojox.mobile.RoundRectList({
  onShow : checkItem,
  ...
});

Or create listener

var listItemParent = dijit.byId('itemRegistryId');
// override onClick - calling inheritance chain once done
dojo.connect(listItemParent, "onClick", listItemParent, checkItem);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.