User Profile

Collapse

Profile Sidebar

Collapse
Haroldp
Haroldp
Last Activity: May 23 '07, 11:04 AM
Joined: May 15 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • This code is more clear:

    When clicked on the row element this must be performed:

    Code:
    row.onclick = function()
     (
    
            LoadingData("LoadingDiv");
            passData = "SessionId=" + SessionId + "&Level=" + "User");
            var XMLResponse = SynchCall("wSetMainSelection", passData);
            OnResponse(XMLResponse.documentElement.childNodes[0].data);
    ...
    See more | Go to post

    Leave a comment:


  • When clicked on the row element this must be performed:

    Code:
    row.onclick = function()
     (
    
            LoadingData("LoadingTable");
            passData = "SessionId=" + SessionId + "&Level=" + "User");
            var XMLResponse = SynchCall("wSetMainSelection", passData);
            OnResponse(XMLResponse.documentElement.childNodes[0].data);
     }
    ...
    See more | Go to post

    Leave a comment:


  • Synchronous XMLHttpRequest blocks earlier performed functions.

    Because I need to be sure that an Http Request is finished before other requests can be done I am using a synchronous XML Http Request.

    I want to show the text "loading... " on the page before the http-request starts. The strange thing here is that this "loading... " text is not visible on the page, but its method is performed though.

    If I place an "alert('somethi ng')" in between I do see...
    See more | Go to post
No activity results to display
Show More
Working...