After trying a few more times, it seems that in Mozilla every XMLHTTP postback to the same page (both with sync and async calls) causes the entire page to reload. This explains why the page doesn't wait for the server execution to end.
Does anyone have any idea as to why Mozilla is doing that...
Hello
I have created a script that does async postback to server and then simply uses an alert box to show results. It works both in IE and Mozilla when posting to a different page than the current one. In IE it works to send data to the current page and read response, but in Mozilla it seems...
tsuji, that would work in IE, what about Mozilla?
i have managed to make this work by declaring the functions and variables I need as belonging to the document IE:
document.myFunction = function () {...}
and then calling this by accessing the document in the iframe...
Hi,
I have a document that contains an Iframe. I would like to call from this document a function found inside the IFrame. In IE this works easily with document.frames[0].functionName(). But the problem is to make this work in Mozilla. Anyone has any suggestions?
Thank you...
ok... got it.
you can do this from the element like this:
- get the coords of the element with respect to its iframe
- get the iframe coords in the parent document. to access the iframe in the parent document one can use:
window.frameElement
--------------------------
"two wrongs...
hey.
I have a document with an iframe and an element inside the iframe. I need to find the absolute coordinates of the element with respect to the document (not iframe).
how can I do this (I can get the absolute coordonates of the element inside the iframe with respect to iframe)? (please...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test</title>
</head>
<body>
<script type="text/javascript">
function test() {
var tr = document.createElement("tr");
var td = document.createElement("td");
tr.appendChild(td);
// add a...
Hi.
I have a page where I want to create some radio buttons dynamically. After adding them to the page, they don't seem to react in any way to user interaction (meaning they won't check when clicked or anything).
Has anyone an idea of what could be wrong?
Thanks.
--------------------------...
I checked SQL Profiler and it seems that the command gets sent by delphi to the server with sc replaced with s_
I agree that sql is mostly used, however, as you pointed out, the dialect and amount of sql syntax differs from one dbms to another. This is why I thought BDE can come in and take...
i'm using delphi 5 and SQL. i have used the non sql method since i thought it might save me trouble when using different dbms through bde.
--------------------------
"two wrongs don't make a right, but three lefts do" - the unknown sage
Hi,
I have an application that needs to create some tables when it's launched. It first deletes the tables if they exist then recreate them. The problem is that one field (called 'sc') gets translated into 's_' when the table actually gets created in the db.
with form1.Table1 do begin...
you have the leave event on the form that triggers when focus is lost.
i think this is what you need
--------------------------
"two wrongs don't make a right, but three lefts do" - the unknown sage
you could use an iframe or a placeholder in wihch you load asp modules.
regarding the event that doesn't fire on your control, the reasons could be many. maybe post the code or take a look at an already made tutorial on this and see where you went wrong.
--------------------------
"two wrongs...
all webservices run by default on port 80. that's one of their great advantages.
second, you can create a method that takes as parameter an XML and mark that method as [WebMethod]. it's as easy as that.
--------------------------
"two wrongs don't make a right, but three lefts do" - the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.