ContributionsMost RecentMost LikesSolutionsRe: Rurl() doesnt return to correct Form Page Did you solve this? I have a similar problem. When I add a child to a newly created parent, instead of bringing me back to that same parent it lands me on a completely new record on the Parent table. This only happens when using New Forms, so it is not an issue with the url. ------------------------------ Eleonora Ruffini ------------------------------ New Forms - Saving Child Record and Redirect to Parent Is anyone having trouble saving child records using the new forms? When I try adding a child record to a NEW (not yet saved) parent, the "Add Child" button saves the parent record and sends me to the child record form where I can enter the record details, but when I click save, instead of being redirected to the original parent, I land in a form to create a new parent record. The URL still has the &z=" & Rurl() redirect language included, and because this only happens when using the new forms, I suspect it is a bug. Can anyone confirm? ------------------------------ Eleonora Ruffini ------------------------------ Code Page for Google ChartHello, I am trying to build a code page that would allow me to display some plots from Google Charts in which I feed some data from Quickbase. The idea is to then display the page in a form as iframe. I am really a beginner for what concerns code pages, so I would need some help. The following is one of the html pages where I would want to plug in my data. <html> <head> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> google.charts.load('current', {'packages':['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ]); var options = { title: 'Company Performance', curveType: 'function', legend: { position: 'bottom' } }; var chart = new google.visualization.LineChart(document.getElementById('curve_chart')); chart.draw(data, options); } </script> </head> <body> <div id="curve_chart" style="width: 900px; height: 500px"></div> </body> </html> I thought I could change the array passed in the data variable as follow, but it does not seem to work. Any thought? <html> <head> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> google.charts.load('current', {'packages':['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable(); var options = { title: 'Company Performance', curveType: 'function', legend: { position: 'bottom' } }; $.getScript("https://xxxxxx.quickbase.com/db/xxxxxx?a=API_GenResultsTable&apptoken=xxxxxx&query={20.EX.38}&clist=17&jsa=1",function(){ console.log(qdb_data); }); data.addRows(qdb_data); var chart = new google.visualization.LineChart(document.getElementById('curve_chart')); chart.draw(data, options); } </script> </head> <body> <div id="curve_chart" style="width: 900px; height: 500px"></div> </body> </html> ------------------------------ Eleonora R. ------------------------------