0
votes
2answers
45 views
Image on uitableview lost after scrolling
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.
customCell.h
…
0
votes
2answers
38 views
Prevent Iframe reloading on post back
Hi all,
I have a webpage with one iframe and a button.
On Page Load event,
if (!Page.IsPostBack)
{
string sDocUrl = //some doucmen url
Iframe1.Attributes["src"] = sDocUrl;
}
When the page is …
1
vote
2answers
40 views
ObjectContext.Refresh() ???
How to update ALL the dirty entities from the data store, and reset their changed values to the original store value?
The method ObjectContext.Refresh requires as a parameter the entities to be …
1
vote
3answers
66 views
javascript reload
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? …
0
votes
1answer
62 views
jQuery galleria plugin with dynamically loaded images
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 …
2
votes
4answers
2k views
How do I reload a page without a POSTDATA warning in Javascript?
I want to reload a page using:
window.location.reload(true);
But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page …
0
votes
1answer
51 views
UITableView selection hightlighted even after tableView reloadData
I am new to iPhone SDK.
I have a UIScrollView and a UITableView on it. The UITableView has 4 cells. I use UIPageControl for pagination.
When user selects, the cell gets highlighted and when the user …
0
votes
1answer
75 views
Web pages that a long time to load keep on reloading, just on vista on my work n/w…
I have a curious problem at work which I've been struggling with since the advent of Windows Vista.
We send our own email newsletter out to 40,000+ people once a week. The sending code has been in …
10
votes
5answers
3k views
How do I unload (reload) a Python module?
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?
if foo.py has changed:
unimport foo <-- how …
1
vote
2answers
132 views
How to force a page to reload if all what was changed in url is hash?
I am trying to reload current page with different url hash, but it doesn't work as expected.
(Clarification how I want it to work: Reload the page and then scroll to the new hash.)
Approach #1:
…
1
vote
3answers
85 views
shift-reload in FF gives unexpected results
dear javascript mavins,
I'm presenting a simple animation using img.src replace and the <canvas> tag. At present it's only expected to work in FireFox (FF 3.5.3, Mac OS X 10.5.5), so …
0
votes
1answer
375 views
problem with reload data from table view after come back from another view
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.
In the view A, it has dynamic data loaded in from …
2
votes
7answers
143 views
best way redirect/reload pages in PHP
Hi,
Whats the best way to reload/redirect a page in PHP which completly removes all history/cache?
Which headers should I use?
The page today:
While clicking on a link, get-parameters is set and a …
0
votes
3answers
125 views
javascript reload and display message
Hi,
I want to reload page after deleting a row from table, and then display message, below is the javascript code,
if(action == 'delete'){
window.location.reload(true);
//tried to set timeout …
0
votes
3answers
46 views
my layout breaks in IE7 and javascript page reloads make the screen blink
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.
It was …
