active questions tagged reload - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T20:19:12Zhttp://stackoverflow.com/feeds/tag/reloadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1895745/imports-with-pydev-eclipse0Imports with Pydev/Eclipseamccormack2009-12-13T06:28:20Z2009-12-13T06:48:25Z
<p>I'm working with the interactive console in eclipse, and reload does not show updated functions in my code. My code was : </p>
<pre><code>def func1():
return 1
def func2():
return 2
</code></pre>
<p>but when I changed it to </p>
<pre><code>def afunc1():
return 1
def func2():
return 2
def func1():
return 3
</code></pre>
<p>and ran imp.reload(TestMod), I got a <code>'module' object has no attribute 'afunc1()'</code>.<br>
Also, sometimes the functions are loaded and sometimes they are not.</p>
http://stackoverflow.com/questions/1893581/side-effects-of-an-apache2-reload-event1Side effects of an Apache2 Reload event [closed]BParker2009-12-12T14:29:43Z2009-12-12T16:44:46Z
<p>I was wondering what effect external clients would see on a fairly busy site if the apache2 server was reconfigured and then an /etc/init.d/apache2 reload command was issued?</p>
<p>I know in theory current actions should hold without issues, but what would the total effect be on the site?</p>
<p>For the sake of this example, lets assume i want to perform a reload once per minute. would this degrade the site performance a great deal?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1880770/change-mysql-innodbbufferpoolsize-at-runtime0Change MySQL innodb_buffer_pool_size at runtime?RobM2009-12-10T12:47:18Z2009-12-10T12:52:58Z
<p>This may be a dumb question, but is it possible to change the MySQL configuration options such as <code>innodb_buffer_pool_size</code> at runtime?</p>
<p>Or, equivalently, is there a way to reload MySQL without closing existing connections or refusing new connections (like you can do with Apache)?</p>
<p>Linux_32 (2.6.26) + MySQL 5.0.24a</p>
http://stackoverflow.com/questions/1876754/split-up-a-mysqldump-file-with-multiple-databases-by-database0Split up a mysqldump file with multiple databases, by databaseManish M. Shah2009-12-09T20:43:20Z2009-12-09T21:08:51Z
<p>Hello,</p>
<p>I have a mysqldump file of multiple databases (5). One of the database takes a very long time to load, is there a way to either split the mysqldump file by database, or just tell mysql to load only one of the specified databases?</p>
<p>Manish</p>
http://stackoverflow.com/questions/1866802/iframe-dont-reload-at-page-refresh0 iframe don't reload at page refreshunknown (yahoo)2009-12-08T12:57:08Z2009-12-08T13:14:26Z
<p>is there any way to div or iframe don't reload at page refresh</p>
http://stackoverflow.com/questions/1831561/image-on-uitableview-lost-after-scrolling0Image on uitableview lost after scrollingNithin2009-12-02T08:51:23Z2009-12-03T03:18:15Z
<p>in my application, i'm loading images to the cells of a table. But, when i scroll the table, the image goes out of sight of the table(goes up), it wont be there even if i scroll back.</p>
<p>customCell.h</p>
<pre><code>#import <UIKit/UIKit.h>
@interface CustomCell : UITableViewCell<UINavigationControllerDelegate, UIImagePickerControllerDelegate> {
UIViewController *viewController;
UIImageView *imageView;
UIButton *button;
@property (nonatomic, retain) IBOutlet UIImageView *imageView;
@property (nonatomic, assign)UIViewController *viewController;
@property (nonatomic, retain) IBOutlet UIButton *button;
-(IBAction)selectExistingPicture1;
@end
}
</code></pre>
<p>customCell.m</p>
<pre><code>#import "CustomCell.h"
@implementation CustomCell
</code></pre>
<p>@synthesize imageView;
@synthesize viewController;
@synthesize button;
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
[picker dismissModalViewControllerAnimated:YES];
} </p>
<ul>
<li><p>(IBAction)selectExistingPicture1 {
if ([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypePhotoLibrary]) {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsImageEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self.viewController presentModalViewController:picker animated:YES];
[picker release];
}
else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error accessing photo library" message:@"Device does not support a photo library" delegate:nil cancelButtonTitle:@"Drat!" otherButtonTitles:nil];
[alert show];
[alert release];
}
}</p></li>
<li><p>(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo {</p>
<p>UIImage *thumbnail = [image <em>imageScaledToSize:CGSizeMake(80, 80) interpolationQuality:1];
/</em>CGSize newSize = CGSizeMake(80, 80);
UIGraphicsBeginImageContext( newSize );
[image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();*/
imageView.image = thumbnail;</p>
<p>[picker dismissModalViewControllerAnimated:YES]; </p></li>
</ul>
<p>} </p>
<ul>
<li><p>(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
// Initialization code
}
return self;
}</p></li>
<li><p>(void)setSelected:(BOOL)selected animated:(BOOL)animated {</p>
<p>[super setSelected:selected animated:animated];</p>
<p>// Configure the view for the selected state
}</p></li>
<li><p>(void)dealloc {
[imageView release];
[viewController release];
[button release];</p>
<p>[super dealloc];
}</p></li>
</ul>
<p>@end</p>
<p>cameraViewController.h</p>
<h1>import </h1>
<p>@interface Camera1ViewController : UIViewController { </p>
<p>}</p>
<p>@end</p>
<p>cameraViewController.m</p>
<h1>import "Camera1ViewController.h"</h1>
<h1>import "CustomCell.h"</h1>
<p>@implementation Camera1ViewController</p>
<ul>
<li><p>(void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];</p>
<p>// Release any cached data, images, etc that aren't in use.
}</p></li>
<li><p>(void)viewDidUnload {</p>
<p>[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}</p></li>
<li><p>(void)dealloc {
[i
[super dealloc];
}</p>
<h1>pragma mark Table Data Source Methods</h1></li>
<li><p>(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}</p></li>
<li><p>(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 25;
} </p>
<ul>
<li><p>(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CustomCellIdentifier = @"CustomCellIdentifier";</p>
<p>CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CustomCellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CustomCellIdentifier] autorelease];
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self
options:nil];
for (id currentObject in nib){
if ([currentObject isKindOfClass:[CustomCell class]]){
cell = (CustomCell *)currentObject;
cell.viewController = self;
break;
}
}</p>
<p>}
//dont know what to do here.
return cell;</p></li>
</ul></li>
</ul>
<p>} </p>
<ul>
<li><p>(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 100;
} </p></li>
<li><p>(NSString *)tableView:(UITableView *)tableView
titleForHeaderInSection:(NSInteger)section {
NSString *key = @"Album";
return key;
}
@end</p></li>
</ul>
http://stackoverflow.com/questions/1780010/prevent-iframe-reloading-on-post-back0Prevent Iframe reloading on post backDave2009-11-22T21:08:55Z2009-11-22T21:24:22Z
<p>Hi all,
I have a webpage with one iframe and a button.</p>
<p>On Page Load event,</p>
<pre><code>if (!Page.IsPostBack)
{
string sDocUrl = //some doucmen url
Iframe1.Attributes["src"] = sDocUrl;
}
</code></pre>
<p>When the page is reloaded (by clicking a button), this iframe is being
reloaded too. This iframe has a static data and doesn't need to be
reloaded everytime when I click a button. Is there a way to prevent
iframe to be reloaded when webform is reloaded?</p>
http://stackoverflow.com/questions/1746941/objectcontext-refresh1ObjectContext.Refresh() ???Shimmy2009-11-17T06:18:55Z2009-11-18T16:23:37Z
<p>How to update ALL the dirty entities from the data store, and reset their changed values to the original store value?</p>
<p>The method <a href="http://msdn.microsoft.com/en-us/library/bb503718.aspx" rel="nofollow">ObjectContext.Refresh</a> requires as a parameter the entities to be refreshed.</p>
http://stackoverflow.com/questions/1750822/javascript-reload1javascript reloadSakamoto Kazuma2009-11-17T18:28:23Z2009-11-17T18:35:05Z
<p>Is it possible to use javascript:location.reload(true) as a action= for a form without having the browser say "In order to reload this page, information must be resent" or something similar to that? Form action is currently being handled by onsubmit= instead. </p>
http://stackoverflow.com/questions/1745988/jquery-galleria-plugin-with-dynamically-loaded-images0jQuery galleria plugin with dynamically loaded imagespanas2009-11-17T01:09:16Z2009-11-17T02:22:13Z
<p>I'm using the Galleria plugin with jQuery to create my image gallery. I'm trying to get load images dynamically from the user's selection into the DOM and have the gallery auto-update to display those new images but it's not working.</p>
<p>Firebug shows the images are successfully loading into the DOM but Galleria displays no thumbnails. I need a way to reload Galleria to display the new images.</p>
<pre><code>/* ---- Gallery Code ---- */
if ($(this).find('div').attr('title') == 'photogallery' && $('.galleria_container').length == 0)
{
$('.gallery').galleria(
{
history : false,
clickNext : true,
onImage : function(image,caption,thumb)
{
if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) )
{
image.css('display','none').fadeIn(1000);
}
var _li = thumb.parents('li');
caption.css('display','none').fadeIn(1000);
_li.siblings().children('img.selected').fadeTo(500,0.3);
thumb.fadeTo('fast',1).addClass('selected');
image.attr('title','Next image >>');
},
onThumb : function(thumb)
{
var _li = thumb.parents('li');
var _fadeTo = _li.is('.active') ? '1' : '0.3';
thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
thumb.hover
(
function() { thumb.fadeTo('fast',1); },
function() { _li.not('.active').children('img').fadeTo('fast',0.3); } // don't fade out if the parent is active
)
}
});
}
/* ---- Gallery Selector ---- */
$(document).ready(function()
{
var galleryImages = new Object();
<?php
echo $myGal;
?>
function setImages(type)
{
var image = '';
for (var i = 0; i < galleryImages[type].length; i++)
{
image += '<li><img src="' + galleryImages[type][i] + '"></li>';
}
$('ul.gallery').html(image);
}
$('ul.menu-horiz li ul li').click(function()
{
setImages($(this).attr('rel'));
});
});
</code></pre>
<p>The PHP code you see just creates an array of images.</p>
<p>So to summarise my question: How can I reload Galleria once the new images have been loaded into the DOM?</p>
http://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript2How do I reload a page without a POSTDATA warning in Javascript?Ricibald2009-02-20T15:35:20Z2009-11-14T19:12:02Z
<p>I want to reload a page using:</p>
<pre><code>window.location.reload(true);
</code></pre>
<p>But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page without this warning?</p>
<p>UPDATED: I have no control of the project! I can't workaround the POST itself!</p>
http://stackoverflow.com/questions/1719963/uitableview-selection-hightlighted-even-after-tableview-reloaddata0UITableView selection hightlighted even after tableView reloadDataRosatta Drew2009-11-12T04:53:54Z2009-11-12T04:57:20Z
<p>I am new to iPhone SDK.</p>
<p>I have a UIScrollView and a UITableView on it. The UITableView has 4 cells. I use UIPageControl for pagination.</p>
<p>When user selects, the cell gets highlighted and when the user scrolls to the next page the cell stays highlighted.</p>
<p>I tried [tableView reloadData] and after the call I could still see the selected row on the UITableView which I do not understand.</p>
<p>Should I redraw the UIScrollView?</p>
<p>Is there any way of clearing up the selection?</p>
<p>Thanks,
R</p>
http://stackoverflow.com/questions/965678/web-pages-that-a-long-time-to-load-keep-on-reloading-just-on-vista-on-my-work-n0Web pages that a long time to load keep on reloading, just on vista on my work n/w...Ralpharama2009-06-08T16:10:18Z2009-10-26T18:00:03Z
<p>I have a curious problem at work which I've been struggling with since the advent of Windows Vista.</p>
<p>We send our own email newsletter out to 40,000+ people once a week. The sending code has been in place for years, it's in classic ASP/VBscript called through a browser and simply loops through each email address, sending it to them. The page takes 40 mins or more to run, so has a big timeout value to allow it to do so.</p>
<p>All well and good, suddenly, after Windows Vista is installed on the work PCs, the email sending page behaved oddly - after a period of time it seems to reload the page, endlessly, so the first 20% of our users get multiple copies of the newsletter until we kill the process!</p>
<p>If we run the code on an XP machine in the on the same office network, it works fine. If we run it on Vista <em>outside</em> the office, so, say, on my own ISP, then it also works fine!</p>
<p>Note, same effect in IE and FF...</p>
<p>So, something about my office network and Vista is causing this...</p>
<p>I recently re-wrote the newsletter code so it would split the task into chunks of 100 users at a time, hoping this would fix it, but my most recent test shows that the office n/w vista machine once again reloads the same page over any over, even though it takes 1/10th of the time to run...</p>
<p>Does anyone have any ideas what it might be, how I can prove it, or, better, how I can get round it?</p>
<p>Thanks for your advice :)</p>
http://stackoverflow.com/questions/437589/how-do-i-unload-reload-a-python-module11How do I unload (reload) a Python module?Mark Harrison2009-01-13T00:33:36Z2009-10-19T22:29:35Z
<p>I have a long-running python server and would like to be able to upgrade a service without restarting the server. What's the best way do do this?</p>
<pre><code>if foo.py has changed:
unimport foo <-- how do I do this?
import foo
myfoo=foo.Foo()
</code></pre>
http://stackoverflow.com/questions/1589799/how-to-force-a-page-to-reload-if-all-what-was-changed-in-url-is-hash1How to force a page to reload if all what was changed in url is hash?serg5552009-10-19T16:45:38Z2009-10-19T19:27:43Z
<p>I am trying to reload current page with different url hash, but it doesn't work as expected.</p>
<p>(Clarification how I want it to work: Reload the page and then scroll to the new hash.)</p>
<p><strong>Approach #1:</strong></p>
<pre><code>window.location.hash = "#" + newhash;
</code></pre>
<p>Only scrolls to this anchor without reloading the page.</p>
<p><strong>Approach #2:</strong></p>
<pre><code>window.location.hash = "#" + newhash;
window.location.reload(true);
</code></pre>
<p>Kinda works but it first scrolls to the anchor, then reloads the page, then scrolls to the anchor again.</p>
<p><strong>Approach #3:</strong></p>
<pre><code>window.location.href = window.location.pathname + window.location.search + "&random=" + Math.round(Math.random()*100000) + "#" + newhash;
</code></pre>
<p>Works but I would rather not add random garbage to the url.</p>
<p>Is there a better solution?</p>
http://stackoverflow.com/questions/1580362/shift-reload-in-ff-gives-unexpected-results1shift-reload in FF gives unexpected resultsjjon2009-10-16T20:55:28Z2009-10-17T21:13:16Z
<p>dear javascript mavins,</p>
<p>I'm presenting a simple animation using <code>img.src</code> replace and the <code><canvas></code> tag. At present it's only expected to work in FireFox (FF 3.5.3, Mac OS X 10.5.5), so cross-browser compatibility isn't (yet) an issue.</p>
<p>When the page is first loaded, or loaded into an new window or tab, all seems to work as expected, and the cache behavior on a simple reload does not seem to be an issue; however, if I try to force a reload with shift-reload, I get a problem. Even though the images have been pre-loaded, the preloaded images for the animation don't seem to be available to the browser which then tries to load each new img.src from the server.</p>
<p>Am I looking at a browser bug here, or is there something buggy in my code that I can't see? This is my first shot at implementing a js class, so there might be a lot here that I don't understand.</p>
<p>Any insight from the assembled wise here would be welcome. You can see what I'm talking about at:</p>
<p><a href="http://neolography.com/staging/mrfm/spin-sim.html" rel="nofollow">http://neolography.com/staging/mrfm/spin-sim.html</a></p>
<p>Thanks,</p>
<p>Jon</p>
http://stackoverflow.com/questions/1119808/problem-with-reload-data-from-table-view-after-come-back-from-another-view0problem with reload data from table view after come back from another viewunknown (google)2009-07-13T14:34:34Z2009-10-17T10:00:02Z
<p>I have a problem in my application. Any help will be greatly appreciated. Basically it is from view A to view B, and then come back from view B.</p>
<p>In the view A, it has dynamic data loaded in from the database, and display on the table view. In this page, it also has the edit button, not on the navigation bar. When user tabs the edit button, it goes to the view B, which shows the pick view. And user can make any changes in here. Once that is done, user tabs the back button on the navigation bar, it saves the changes into the NSUserDefaults, goes back to the view A by pop the view B.</p>
<p>When coming back to the view A, it should get the new data from the UIUserDefaults, and it did. I user NSLog to print out to the console and it shows the correct data. Also it should invoke the viewWillAppear: method to get the new data for the table view, but it didn't. It even did not call the tableView:numberOfRowsInSection: method. I place a NSLog statement inside this method but didn't print out in the console.</p>
<p>as the result, the view A still has the old data. the only way to get the new data in the view A is to stop and start the application.</p>
<p>both view A and view B are the subclass of UIViewController, with UITableViewDelegate and UITableViewDataSource.</p>
<p>here is my code in the view A :</p>
<p>-- (void)viewWillAppear:(BOOL)animated {</p>
<pre><code>NSLog(@"enter in Schedule2ViewController ...");
// load in data from database, and store into NSArray object
//[self.theTableView reloadData];
[self.theTableView setNeedsDisplay];
//[self.theTableView setNeedsLayout];
</code></pre>
<p>}</p>
<p>in here, the "theTableView" is a UITableView variable. And I try all three cases of "reloadData", "setNeedsDisplay", and "setNeedsLayout", but didn't seem to work.</p>
<p>in the view B, here is the method corresponding to the back button on the navigation bar.</p>
<p>-- (void)viewDidLoad {</p>
<pre><code>UIBarButtonItem *saveButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(savePreference)];
self.navigationItem.leftBarButtonItem = saveButton;
[saveButton release];
</code></pre>
<p>}</p>
<p>-- (IBAction) savePreference {</p>
<pre><code>NSLog(@"save preference.");
// save data into the NSUSerDefaults
[self.navigationController popViewControllerAnimated:YES];
</code></pre>
<p>}</p>
<p>Am I doing in the right way? Or is there anything that I missed?</p>
<p>Many thanks.</p>
http://stackoverflow.com/questions/1571973/best-way-redirect-reload-pages-in-php2best way redirect/reload pages in PHPjorgen2009-10-15T12:09:28Z2009-10-15T12:42:54Z
<p>Hi, </p>
<p>Whats the best way to reload/redirect a page in PHP which completly removes all history/cache?
Which headers should I use?</p>
<p>The page today:</p>
<p>While clicking on a link, get-parameters is set and a script is running. When finished, I want to redriect and reload the page without the get-parameters. At first, it looks like nothing has happen, but when pressing F5, the changes appear.</p>
<p>What I want:</p>
<p>Redirect and reload so the changes appear without pressing F5. </p>
http://stackoverflow.com/questions/1541134/javascript-reload-and-display-message0javascript reload and display messageDel2009-10-08T23:41:09Z2009-10-09T00:59:30Z
<p>Hi,</p>
<p>I want to reload page after deleting a row from table, and then display message, below is the javascript code,</p>
<pre><code>if(action == 'delete'){
window.location.reload(true);
//tried to set timeout here, no luck :(
document.getElementById('messageSpan').innerHTML = "The value has been deleted.";
}
</code></pre>
<p>It seems that the reload function is executed after the 'messageSpan' content has been changed, so the reload function wipes out the 'messageSpan' content.</p>
<p>I need help</p>
<p>Thanks a lot,</p>
<p>Del</p>
http://stackoverflow.com/questions/1523058/my-layout-breaks-in-ie7-and-javascript-page-reloads-make-the-screen-blink0my layout breaks in IE7 and javascript page reloads make the screen blinkchibineku2009-10-06T00:26:18Z2009-10-06T00:34:38Z
<p>My layout breaks if I change the window size in IE7/AOL, so I added a simple javascript function that fires on window.onresize, but no matter how I change the location I get problems.</p>
<p>It was suggested I post a link and here it is:</p>
<p><a href="http://sinaesthesia.co.uk/" rel="nofollow">link text</a></p>
<p>I already use PHP to detect browser and include an IE7-only inline stylesheet (and for mobile browsers), and my page looks nearly identical to the way it does in FF, Opera, Chrome, Safari and IE8, but when I change the window size, some things go wonky, and come back into line if you refresh. Any advice is welcome :)</p>
http://stackoverflow.com/questions/1517038/python-refresh-reload0python refresh/reloadwomble2009-10-04T18:23:26Z2009-10-04T18:46:24Z
<p>This is a very basic question - but I haven't been able to find an answer by searching online.</p>
<p>I am using python to control ArcGIS, and I have a simple python script, that calls some pre-written code.</p>
<p>However, when I make a change to the pre-written code, it does not appear to result in any change. I import this module, and have tried refreshing it, but nothing happens.</p>
<p>I've even moved the file it calls to another location, and the script still works fine. One thing I did yesterday was I added the folder where all my python files are to the sys path (using sys.append('path') ), and I wonder if that made a difference.</p>
<p>Thanks in advance, and sorry for the sloppy terminology. </p>
http://stackoverflow.com/questions/885159/tell-swf-to-check-what-page-its-loading-on-an-switch-to-the-correct-page0Tell swf to check what page its loading on an switch to the correct page.Steve2009-05-19T21:38:54Z2009-10-04T02:00:03Z
<p>Google has indexed my .swf file, so it’s loading by itself in a browser
( example.com/FL_map_page.swf )</p>
<p>I need for the .swf to check to see if it is loaded on the .html page and if not switch to the correct page. </p>
http://stackoverflow.com/questions/1500145/jquery-tabs-reload0jquery tabs reloadngreenwood62009-09-30T19:22:34Z2009-10-01T08:11:30Z
<p>I am trying to figure out how to load the tabs the way I want. Basically when someone visits my page I want it to create 2 tabs(which I have working). Now inside of each of those tabs I have a widget that is put there through embed code (which is working fine). However, when I switch from one tab to another it is reloading the data in each tab. So say I was watching a video in one when I switch to the other one it stops the video and when I go back it restarts it. Is there any way to stop it from reloading the tabs once they are loaded? I tried setting cache to true but it didnt seem to fix it. Any help is appreciated.</p>
http://stackoverflow.com/questions/1451283/how-do-i-make-a-table-view-redisplay0How do I make a table view redisplayDale2009-09-20T15:32:35Z2009-09-20T15:44:56Z
<p>I've got a Navigation iPhone app and it's "second level" controller is currently a UIViewController whose Nib contains a UIView. I made space at the top of the UIView for a navigation bar and then I added a tool bar on the bottom, on which I put a refresh button, a label, and an activity indicator. Last, but not least, I put a table view in the middle.</p>
<p>I connected everything up between the controller and the nib and made the File's owner connect to the UIView and the datasource and delegate for the UITableView contained by the UIView to refer to the File's owner and everything works fine.</p>
<p>But I can't figure out how to tell the table view to refresh.</p>
<p>I thought I could just put this in the code where I want the table to update:</p>
<pre><code>[self.tableView reloadData];
</code></pre>
<p>But unless my second level controller is a UITableViewController that line of code won't compile. When I make my second level controller a UITableViewController, my app blows up when the second level controller gets loaded because the file's owner doesn't refer to a table view controller, and when I make the file's owner refer to the table view outlet instead of the view, things work except for the fact my tool bar on the bottom, along with its label and refresh button don't appear anymore.</p>
<p>I also tried simply adding</p>
<pre><code>[self refresh];
</code></pre>
<p>in place of [self.tableview reloadData] but the code gets stuck in a loop refreshing itself.</p>
<p>How can I get this all working? I think I need to leave my second level controller as a UIViewcontroller but I still want to be able to get the UITableView it contains to update itself when I want it to.</p>
http://stackoverflow.com/questions/1165326/prevent-iframe-content-reload-on-hide-in-firefox0prevent iframe content reload on hide in firefoxPaolo Chiodi2009-07-22T13:39:29Z2009-09-16T08:13:29Z
<p>In my webapplication I hide an iframe using jquery hide() function.
Surprisingly firefox reload the content of iframe when the iframe is hidden.
Is this a known problem? Is there a workaround?
I also tried to hide the iframe setting css style display to 'none'. Same result.</p>
<p>The script work as expected in opera.</p>
<p>I'm using firefox 3.5.1</p>
http://stackoverflow.com/questions/1406827/nsoutlineview-reloaditemreloadchildren-crashing-my-application0NSOutlineView -- reloadItem:reloadChildren: crashing my applicationKing2009-09-10T18:07:05Z2009-09-12T09:31:32Z
<p>Hi guys</p>
<p>I am trying to reload a particular item in my outline view using <code>reloadItem</code> or <code>reloaditem:reloadchildren</code> function in NSoutlineView but its crashing my entire application. please can you tell me a workaround for this like I also tried to collapse that item and expand it again but it is not reloading that item and its children.</p>
<p>Right now what I am doing is:</p>
<ol>
<li><p>I am manually saving the state of my outline view using a for loop and saving the item if its in expanded state or not.</p></li>
<li><p>Calling NSOutlineView's <code>reloadData</code> function </p></li>
<li><p>Then using the saved state, run a for loop to expand all the items that were previously expanded.</p></li>
</ol>
<p>But this method has a lot of performance overhead. Is there any other solution to this method?</p>
<p>Is there any method to auto save the state of outline view and reload it and set that state again? what do these autosaveExpandedItems and setautosaveExpandedItems methods do?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1370376/prevent-loss-of-variables-when-browser-reload-button-is-pressed0Prevent loss of variables when browser reload button is pressedYusuf Akyol2009-09-02T22:00:31Z2009-09-04T00:07:44Z
<p>Hi to everybody,</p>
<p>Is it possible to keep my (global) variables when the page is reloaded? If yes, how?</p>
<p>Thanks for any help.
Best regards. </p>
http://stackoverflow.com/questions/966012/cant-reload-activerecord-association-from-controller1Can't reload ActiveRecord association from controllersnitko2009-06-08T17:29:15Z2009-08-22T23:00:01Z
<p>Spent a working day on this.</p>
<p>I have</p>
<pre><code>class Box
has_many :users, :through => :subscriptions
end
</code></pre>
<p>I also have custom <code>insert_new_users</code> and <code>associate_with(new_users)</code> methods which use multiple INSERT to do their job quickly. Anyway, they work fine. I also have this line at the end of "associate_with" method:</p>
<pre><code>def associate_with
# mysql INSERT here
self.users(true) # Should force reload
end
</code></pre>
<p>It works as expected when running in test environment (both controller and model tests) and it fails as expected if I remove the <code>true</code> argument, which forces the reload. It also works from <code>script/console</code> in development if I <code>update_attributes</code> the model. But fails in development or production when I'm trying to <code>update_attributes</code> from controller. It simply does not reload associations and I can see it in logs, where it says "CACHE (0.0ms)" for this query.</p>
<p>The weird thing - it worked before and I can't identify the moment it stopped working due to some reasons. I was hoping maybe someone knows how is this possible.</p>
http://stackoverflow.com/questions/1280088/how-do-you-clear-an-html-form-on-page-reload-but-not-when-the-user-navigates-back0How do you clear an HTML form on page reload but not when the user navigates BACK to the page?John2009-08-14T20:38:54Z2009-08-14T22:00:29Z
<p>I am using the trick where you store some data in a hidden form in order to be able to be able to persist it so that when the user navigates away from the page and then uses the BACK button to come back I can restore the data to the page without hitting the server again... </p>
<p>However, this trick means that the same thing happens when the user clicks refresh or reload... (even shift-reload in Firefox). I would like to detect that the user is clicking reload as opposed to clicking the back button so that I can start fresh on a reload but still restore the previous data when the user navigates away and back.</p>
<p>Is there a way to do this? I've been investigating the onbeforeunload event etc but haven't figured anything out yet.</p>
<p>Edited to address Josh's question of "Why?":</p>
<p>The page is a search results page with a bunch of AJAX filters. The user might spend quite some time tweaking the filters to get just the set of search results they want... then if they either click away from the page or type in a new address in the URL bar... then come back to the page, if I don't do something like this, they will have to start all over and do all of the filtering again. This has been a very frustrating experience for the users we've brought in for usability testing.</p>
<p>This is the type of thing that a tech savy user might solve by just opening a new tab instead of clicking/typing away, but unfortunately the vast majority of our users are not tech savy, so the obvious solution is to have the page restore the filters/results when the user navigates back to the page.</p>
<p>On the other hand, there are two reasons I can think of why a user might reload the page 1. The results on the search page have a time-sensitive element in them and the user may want to get more up-to-the-minute results or 2. occasionally there may be an error where the page did not load properly. In both of these cases, if I restore the page to the saved state they will get the same (old and/or broken) results and not the fresh/fixed results they were expecting.</p>
<p>Hope that clears it up.</p>
http://stackoverflow.com/questions/1255599/how-do-i-reload-the-mainview-when-coming-back-from-the-flipview-using-utilities-t0How do I reload the mainview when coming back from the flipview using Utilities template?RyeMAC32009-08-10T15:35:16Z2009-08-10T15:35:16Z
<p>I'm using the Utilities Xcode template for my iPhone app. I am trying to find out how to reload the mainview after I come back from the flipview. Seems like the searches I've done come back with the older version of the Utilities template that I do not have. Apple seems to have redone it for 3.0. </p>
<p>What I tried to do was put a method in the mainview that reloads the table view on the mainview, and call that method when I come back from the flipview. I must be missing something, because it does not work.</p>
<p>I placed in MainViewController.h</p>
<pre><code>- (void) reloadMainView;
</code></pre>
<p>I placed in MainViewController.m</p>
<pre><code>- (void) reloadMainView {
[tableView reloadData];
}
</code></pre>
<p>In FlipViewControlller.m I added </p>
<pre><code>[MainViewController reloadMainView];
</code></pre>
<p>to the "done" method like this:</p>
<pre><code>- (IBAction)done {
[self.delegate flipsideViewControllerDidFinish:self];
UIViewAnimationTransition transition;
transition = UIViewAnimationTransitionFlipFromLeft;
[MainViewController reloadMainView];
}
</code></pre>
<p>The app still builds and runs. It still flips, but the MainView never reloads and I get the error in FlipsideViewContrller.m:</p>
<p>'MainViewController' may not respond to '+reloadMainView' (Methods without a matching method signature will be assumed to return 'id' and accept '...' as arguments.)</p>
<p>Then someone told me to try this:</p>
<p>I put this in mainviewcontroller.h</p>
<pre><code>- (void)viewWillAppear:(BOOL)animated;
</code></pre>
<p>and this in mainviewcontroller.m</p>
<pre><code>- (void)viewWillAppear:(BOOL)animated {
[tableView reloadData];
}
</code></pre>
<p>But what goes in my flipviewcontrolller to call it when you flip back to the mainview?</p>
<p>I'm stuck, please help. Thanks</p>