0
votes
2answers
31 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
3answers
59 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? …
1
vote
2answers
33 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 …
0
votes
1answer
45 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 …
0
votes
1answer
39 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 …
1
vote
2answers
123 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
81 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 …
2
votes
7answers
137 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
122 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
45 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 …
0
votes
3answers
136 views
python refresh/reload
This is a very basic question - but I haven't been able to find an answer by searching online.
I am using python to control ArcGIS, and I have a simple python script, that calls some pre-written …
0
votes
2answers
63 views
jquery tabs reload
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 …
0
votes
1answer
100 views
How do I make a table view redisplay
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 …
0
votes
1answer
59 views
NSOutlineView — reloadItem:reloadChildren: crashing my application
Hi guys
I am trying to reload a particular item in my outline view using reloadItem or reloaditem:reloadchildren function in NSoutlineView but its crashing my entire application. please can you tell …
0
votes
5answers
120 views
Prevent loss of variables when browser reload button is pressed
Hi to everybody,
Is it possible to keep my (global) variables when the page is reloaded? If yes, how?
Thanks for any help.
Best regards.
