refresh

Reloading modernizr after ajax

Hello, I have part of a page being dynamically refreshed via the jQuery load() method, but its not looking so hot in IE. Short of rewriting the mark-up to suite ie, I would like to reload modernizr after the ajax and have it re-work its magic to the newly inserted content. Is this possible? hopefully via the load() callback somehow? upd...

Datagrid is not getting refreshed in flex

Hi All, I am using same datagrid to display two different sets of data based on user selection. The problem is data grid is not getting refreshed automatically when i edit data. I guess the problem is because of ItemRenderer or Item Editor. I am using LabelRendere extended from Label but doesn't override set data. Is it necessary...

How to renew a text input value in a js var in jquery

Hello, I have a jquery + plugin Boxy + form input mess. That´s the situation: 1 - when I press a link, a form with only a text input and a submit button appears in a popup. 2- When I write some text and press the submit button, I get the text input value in a js var, and send it by ajax to a PHP function that performs a operation a ...

Disabling A Form Element To Refresh?

I'm adding 50k~ish items to a list view and it refreshes each time (this is slowing it down big time). How can I disable the redrawing of the form, and enable it when it's done adding all of the items? ...

Prevent duplicate record insert on manual page refresh

Hi, I have a problem which has only just surfaced itself. I'm working in a MVC environment. The method names in my interface class match those of the request module and action i.e. ?module=test&action=action would result in a method called public function test_action() { } In this particular problem, I have a form which submits to its...

WPF Real Time Multithreaded Stock Trading Application

Hi All I am building a real-time multi-threaded application in WPF, but i am having difficulties in updating the UI. I have a background worker thread that contains logic which determines what trades to send into the market. When a valid trade is sent to the market, i receive status updates on these trades via events in my main applica...

Robust auto-refresh web page

I have many web pages that needs to auto-refresh once a minute. Easily done with META REFRESH or a some javascript. (And yes, the whole pages needs to refresh -- LOTS of content changing). However, it needs to be as robust as possible. If the web server is momentarily down or there is a network hiccup, it can't refresh and will then ...

How to repaint a UITextView for iPhone 3.x after updating data programatically

In my app I update a textView progamatically. I actually loop through a dataset from a SQLITE3 DB and show a specific text for a given time. Then I would like to show the text from the next dataset record and so forth. I have been browsing through all kind of forums and the apple doc as well, but could not find anything like a repaint, r...

C#: web browser control, problem with cache

Hi, I am using a web browser control do display some data in html form. Data comes from the database. The browser is inside a dialogbox, and every time the data are changed, the dialog is displayd. The problem is that it is displayed with the old values, even if it is bind with the updated object/datasourse. Now I use a refresh button ...

Problem with refreshing ListView.

The problem is: I have problem with refreshing listView. I set ListView adapter (BaseAdapter) after changing data object I call notifyDataSetChanged but it make no effect to my list - its stay empty. None of Adapter function is called! What i did wrong? ...

refresh content of a jquery ui dialog

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...

Refreshing subview of uiview?

hi... I want to refresh the uiview which has uiimageview and uilabel as a subview of uiview. I don't know how to do this.Plz help me out to do. Thank u... Renya ...

Form not refreshing after ShowDialog (Compact Framework)

Hi, I'm having a weird issue with form painting in the Compact Framework. I have a login dialog that is basically a small form that is opened on top of another using ShowDialog. When a card is swiped, the login dialog is supposed to close, then some login tasks are performed and then the form behind it should be activated. The problem is...

Refresh meta tag in GWT

How can we achieve what the below HTML meta tag can do, in GWT? <meta http-equiv="refresh" content="30" /> ...

returning data from a remote php script

I am using php/ajax to submit a form without page refresh. Here are my files- coupon.js jQuery(document).ready(function(){ jQuery(".appnitro").submit( function(e) { $.ajax({ url : "sms.php", type : "post", dataType: "json", data : $(this).serialize(), succe...

wpf forcing update UI window during a procedure

Hi everyone! I need only to show a custom control (a clock with rotating hands) and with this to replace the mouse cursor, if I use a file .cur or .ani to replace the mouse cursor Me.CUrsor = New Cursor("absolute path of the .ani file") there is no problem: I can change the cursor during a procedure: but the quality of the animation is ...

Reset iframe after page refresh

I have a page that loads in content via iframe. Within that content is a link that goes to another page, but loads in content to the page the same way. When I refresh the page, the content from the second iframe is still loaded in. Is there anyway to reset it to the first iframe on a page refresh, without having to Shift+Refresh? ...

Which is the best way to auto refresh a chat pag.

I can easely use javascript to auto refresh the page every 10 sec for example but, isnt this going to overload the page having to ask for any change every 10 secons? is there a more efitient way to do this. Some body told me once than there is a way having the client side waiting for a response from the server that only sends it when it ...

Prevent displaying unstyled page when doing a page-refresh.

How could I prevent my page displaying an unstyled view while the page is loading ? I think its probably because of the order of loading different JavaScript-files. Is there a best-practice, for example loading plugins before my own code ? Should every jQuery/.js-function called after document.ready or windows.load ? link to page Than...

.NET Update WPF Control on own dedicated UI thread

Hi All I have a real-time application which constantly updates a UI log (RichTextBox control) in the form of a ListView control. The control is updated with current application data received via events. My application was running very slow and i found it was due to the ListView log being updated, which blocks the UI thread. As you can i...