search for: pageparts

Displaying 3 results from an estimated 3 matches for "pageparts".

Did you mean: pagepart
2006 Oct 03
0
WebObjects-style Object Cache
...o place that it would have been set. This makes me believe my "it just works" assumption is wrong in this case. Does anybody have any idea what I''m talking about here? In WebObjects, all my fetches to objects would go through an EditingContext. So when I told my Page to fetch pageParts() then that Page and all the PageParts would get plopped into one EditingContext. And when I asked a PagePart for it''s Page, it would pull that object from the EditingContext so I would get exactly the Page object I expected instead of a fresh copy (or duplicate) Page object re-fetched fo...
2006 Jan 13
0
Saving ActiveRecord objects that are composed of other objects
I''ve got two pretty simple model objects Page and PagePart. Page has_many PageParts and PageParts belong_to Pages. When updating PageParts for a specific Page I''d like to be able to do: page.parts[x].content = ''changed'' page.save and expect that should the validation pass the changed page part would be saved as well, but this doesn''t s...
2007 Sep 24
1
IE memory leak and update()
Hello I have following code in my project and it''s a question for me if it causes memory leaks in IE. pagePart = getSearchResult(); // retrieve part of the page w/ search result from server $(''container'').update(pagePart); $$(''#container a'').each(function(a) { Event.observe(a, ''click'', ...); // handlers for link clicks }); As you