Forum Discussion
NirajShah4
5 years agoQrew Cadet
Thanks, Mark.
When I do that, the code is accepted, however no QR code image appears. My code is below and my image is attached
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl=" & URLEncode(URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Niraj Shah
------------------------------
When I do that, the code is accepted, however no QR code image appears. My code is below and my image is attached
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl=" & URLEncode(URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Niraj Shah
------------------------------
MarkShnier__You
Qrew Legend
5 years agotry this
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl="
& URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl="
& URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- NirajShah45 years agoQrew CadetI tried your version of the code and I get a syntax error due to the extra parentheses after the: ([Order - Expected Inventory Record ID#])) &
I removed the extra parentheses and the syntax was accepted but the QR code image still shows up as a broken image link.
Updated syntax:
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl="
& URLEncode (URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Niraj Shah
------------------------------- BlakeHarrison5 years agoQrew CaptainHave you tried this version?
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl="
& URLEncode (URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" & [Order - Expected Inventory Record ID#] &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &URLEncode(Now()) &
"&z=" & Rurl())
& "/>"
------------------------------
Blake Harrison
bharrison@datablender.io
DataBlender - Quick Base Solution Provider
Atlanta GA
404.800.1702 / http://datablender.io/
------------------------------- NirajShah45 years agoQrew CadetThanks, Blake.
I just tried this in my application and the QR code is still not appearing; just a broken image as referenced above.
------------------------------
Niraj Shah
------------------------------