DougHines
6 years agoQrew Trainee
Another jQuery help request...back to basics..
I could use some help with a simple looping script I have been attempting to put together for the last two weeks with no success. The purpose of the script is to easily add a range (large range) of phone numbers to our quickbase database without the need of csv importing or repeatedly using "Copy+Paste Special" in data entry mode. I have been learning Javascript as I go, depending on the project I am assigned/asked to do.
Originally I had a JS function in the IOL file that I was attempting to call from a Formula URL button, but with no luck. It went something like this :
I have tried both the basic IOL method and getScript. Is this the right approach? Is there a better method for what I'm attempting to do?
Originally I had a JS function in the IOL file that I was attempting to call from a Formula URL button, but with no luck. It went something like this :
function addTNRange(start,end,prod,loc){
// Error checking here
// for loop to add a record for every TN in the given range
alert("Range added.")
};
I have tried both the basic IOL method and getScript. Is this the right approach? Is there a better method for what I'm attempting to do?