Jump to content

Dschrepfer

Members
  • Posts

    6
  • Joined

  • Last visited

  • Days Won

    1

Dschrepfer last won the day on July 25 2014

Dschrepfer had the most liked content!

Dschrepfer's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hi IMDora - The issue was that a user put in a #206 into the phone field and I think it was throwing off my parameters. It has been corrected on my end, but I really appreciate your response.
  2. Hello, One of my users said that they are no longer able to print out quotes from our system. When I tried, it appears that the javascript isn't running. I understand that Caspio has made updates but I did not see anything regarding the window.open event... I have attached the javascript to this message. Thanks! Shalerpro.Java
  3. I think it isn't working because my first results list is pulling from a View and not accepting the data because it's named differently? This is my query string: <a href="http://b6.caspio.com/?Quote_ID=[@field:Quote_Quote_ID]">Delete Quote</a> It's passing the parameter: http://b6.caspio.com/?Quote_ID=92129 correctly, just not accepting it.
  4. I have a results page that I'm passing a parameter with a Query String to another results page. I can see the parameter is passing correctly because it is showing in the address bar, but it's not filtering per the Unique ID. When I preview my second results page it is asking for the parameter so I'm at a loss as to why it isn't taking it and showing all the records.
  5. I figured out why it wasn't working. I needed the ID for my checkbox to be 'insertRecordBillTo_Same'. The sad part is that I stared at this code all day yesterday wondering why it wouldn't work. Today I caught my error right away...
  6. Hello, I have been working on this code all day trying to get it to work in my form. I have a check box named "BillTo_Same" and when it is checked I want the customer address to auto fill the Bill To address. I'm not sure why this isn't working... All my ID's match the system correctly and the code is in the footer of my form. Any help would be appreciated. <script> function f_address() { if(document.getElementById('BillTo_Same').checked) { document.getElementById('InsertRecordBillToName').value=document.getElementById('InsertRecordCompany').value; document.getElementById('InsertRecordBillToAddress').value=document.getElementById('InsertRecordAddress').value; document.getElementById('InsertRecordBillToCity').value=document.getElementById('InsertRecordCity').value; document.getElementById('InsertRecordBillToState').value=document.getElementById('InsertRecordState_Province').value; document.getElementById('InsertRecordBillToZip').value=document.getElementById('InsertRecordZip_Code').value; document.getElementById('InsertRecordBillToCountry').value=document.getElementById('InsertRecordCountry').value; } else { document.getElementById('InsertRecordBillToName').value=""; document.getElementById('InsertRecordBillToAddress').value=""; document.getElementById('InsertRecordBillToCity').value=""; document.getElementById('InsertRecordBillToState').value=""; document.getElementById('InsertRecordBillToZip').value=""; document.getElementById('InsertRecordBillToCountry').value=""; } } document.getElementById('BillTo_Same').onclick= f_address; </script>
×
×
  • Create New...