Hi all,
I have a number of pages that each have 3 or 4 user controls on. each control has their own updatepanel in.
I am using JQuery and thickbox to create a modal window, where I open another aspx page and change some of the data.
What I want to do is to be able to refresh some or all of the update panels / content on the page when ...
I cannot understand how Bing Community site is implemented. Clicking one of the "All Recent" "Unanswered" "Unread" or "Your Discussions" issues regulare request that refreshes whole page (proxy display regular request) also it changes URL (full URL not just #hash). But page does not flash!
How they achieved this?
...
I have an asp.net form used for search. The search result is showing on the same page using Ajax. If I navigate to another page and come back, I get the populated form but the search result is empty. What's the best way to go back to the page and have the result populated.
Or how to force the page to post back to repopulate the page wi...
I am using jsf:commandLink in my xhtml. While configuring Partial Refresh feature in Jboss portlets, I am facing problem with commandLink. These are not supporting the partial Refresh.
Any Workarounds?
...
I have been trying to solve this problem for a while now and have looked on numerous forums to find a solution. Here is my setup. Any help would be greatly appreciated!
I currently have a index page that loads a JavaScript header and footer above and below my "content" section. I also have a list of navigation links inside of the head...
Hello,
I'm having a workflow issue with my JQuery dialogs when trying to create the dialogs and then doing a partial page render. I'll try to go through a sample scenario, and my apologies in advance for the long problem description:
The page loads, with the html that I would like to be turned into JQuery dialogs. The dialogs are creat...
Hello everyone
I have a GridView inside an UpdatePanel and because of some bug I can't seem to find, when I download a file (through an iframe inside another updatepanel) the background images of my buttons don't show up.
I thought that, since the download doesn't really need to update the panel (which is causing the bug) I want to pre...
Hey all,
I'm using the Twitter API (via TweetSharp) and was wondering if it's possible to automatically refresh the page from the API so that all users see the update? If so, is it also possible to take it one step further by only have a partial page update so only the relevant change is updated instead of the entire page?
Thanks for ...
Hi folks!
I have a website developed using Drupal. What I want is to create a link which launches a modal window with a custom content create form, then when the form submits and the child window closes, a view or a display of a view in the parent must be refreshed.
I have tried using an excellent module like automodal and ajax_views_re...
I have a search button tied to an update panel as a trigger like so:
<asp:Panel ID="CRM_Search" runat="server">
<p>Search: <asp:TextBox ID="CRM_Search_Box" CssClass="CRM_Search_Box" runat="server"></asp:TextBox>
<asp:Button ID="CRM_Search_Button" CssClass="CRM_Search_Button" runat="server" Text="Search" OnClick="SearchLeads...
Can I refresh a HTML component in JSP? I have two dropdowns. On selection of a value in the first dropdown the values in the dropdown box are to be fetched from the database. Is this possible using JSP?
...
I've got a design for a video page which has a main video panel which will load the FLV file into JWPlayer when a thumbnail image is clicked. I think what I'm looking for is a partial page refresh? What is the best way to achieve this effect?
This is the script I am using to display the video panel:
<script type='text/javascript'>
...
Is it possible to refresh only the part of the page? How?
the part:
if (checkExpiry($member->expires)==true) {
print timeLeft($leftts);
} else {
print "expired";
}
I have table which is showing name, email, time until membership ends and I need to refresh 'time until membership ends' every second.
...
When we sign into gmail in one tab and orkut in another(remember both can only be of the same account. Logging into one automatically logs into another). if we log out from gmail and then go to the tab in which orkut is already open, after remaning in the page for a few seconds the page automatically logs out. How is this done? i assu...
*FYI: I'm not using Adsense and this is not against my TOS...
I have pages that display jquery slideshows. I used to create the slideshows in html and so every slide change would be a pageview. Now that I'm using javascript for the slideshow I am only registering one ad impression for every slide viewed. I'd like to find a way to hav...
Hi Guys,
I have a simple form (textbox, submit button) which is wrapped in an update panel.
<asp:UpdatePanel ID="ReplyUpdatePanel" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:Textbox id="ReplyTextBox" runat="server"/>
<asp:Button id="SubmitButton" OnClick="SubmitButton_Click" runat="server"/>
<...
I have a number of jQuery scripts that select elements within the area that I run a partial page refresh on.
I am using this css tricks code snippet to refresh that part of the page:
$('#refreshbutton').click(function() {
var url = "http://myUrl.com/indexTest.php?ID=" + Math.random();
setTimeout(function() {
$("#maindispl...
i managed to to get this script. It's refreshing the div of the dialog window:
function getRandom() {
$("#category_dialog").load("<?php echo $category; ?>", '', callback);
}
function callback() {
$("#category_dialog").show("fast");
setTimeout("getRandom();", 10000);
}
$(document).ready(getRandom);
everything works fine. di...
Hello!
I am using this jquery function:
$(function() {
$("#refresh").click(function() {
$("#category_dialog").load("<?php echo $category; ?>")
})
});
i am using as well a link with the id="refresh" problem is it reloads the content only once, when i click it second time it doesnt refresh and i know there were changes made.
T...
Hey,
I am developing a website that has some sort of realtime update.
Now the website is generated with a javascript variable of the current ID of the dataset.
Then in an interval of some seconsd an AJAX call is made passing on the current ID, and if theres something new the server returns it along with the latest ID which is then updat...