Forum Discussion

DanteTognoli's avatar
DanteTognoli
Qrew Captain
5 years ago

create new button not working

I use buttons like this all over the place, but this one is not copying the fid data into the new record.

URLRoot() & "db/" &[_DBID_AUDIT_FORMS]
& "?a=API_GenAddRecordForm&_fid_9=" & URLEncode([Helipad_Name])
& "?a=API_GenAddRecordForm&_fid_10=" & URLEncode([FAA ID])

It opens the new record but no data is carried over to it.

------------------------------
Dante Tognoli
------------------------------
  • The GenAddRecordForm opens up an Add Record form, you are confusing it by trying to open two forms

    try this

    URLRoot() & "db/" &[_DBID_AUDIT_FORMS]
    & "?a=API_GenAddRecordForm"
    & "&_fid_
    9=" & URLEncode([Helipad_Name])
    &  "&_fid_10=" & URLEncode([FAA ID])



    ------------------------------
    Mark Shnier (YQC)
    Quick Base Solution Provider
    Your Quick Base Coach
    http://QuickBaseCoach.com
    mark.shnier@gmail.com
    ------------------------------
    • DanteTognoli's avatar
      DanteTognoli
      Qrew Captain
      I see, makes perfect sense now, thanks.

      ------------------------------
      Dante Tognoli
      ------------------------------