lordsmusicalbox
Programmer
Programmers,
I am updating a Coldfusion Application in basic terms facilitates the following:
1. User enters part number. When the OnBlur Event fires, the part number is queried to display the description. This is done by loading an iframe with a Coldfusion page.
2. Based on the part number id, I query the database to retrieve the part's UOM. (I also use a hidden iframe element to load Coldfusion page that has a query to retrieve UOM.)
On #2, I tried to mimick what a previous programmer developed by using another iframe, which I will add works decently. However, it is slow on the upload. I know this has to do with addition of the iframe element.
The solution I need is this:
I need to eliminate the additional iframe and have a Stored Procedure call via JavaScript returning the UOM. From here I will use the document.getElementById.innerHTML to store the UOM.
Can I use the Javascript object: stproc.? Can you give me an example of how to set the necessary objects, connection, etc.
Thank you in advance for you expertise
I am updating a Coldfusion Application in basic terms facilitates the following:
1. User enters part number. When the OnBlur Event fires, the part number is queried to display the description. This is done by loading an iframe with a Coldfusion page.
2. Based on the part number id, I query the database to retrieve the part's UOM. (I also use a hidden iframe element to load Coldfusion page that has a query to retrieve UOM.)
On #2, I tried to mimick what a previous programmer developed by using another iframe, which I will add works decently. However, it is slow on the upload. I know this has to do with addition of the iframe element.
The solution I need is this:
I need to eliminate the additional iframe and have a Stored Procedure call via JavaScript returning the UOM. From here I will use the document.getElementById.innerHTML to store the UOM.
Can I use the Javascript object: stproc.? Can you give me an example of how to set the necessary objects, connection, etc.
Thank you in advance for you expertise