EverettPattersoQrew CaptainJoined 6 years ago180 Posts27 LikesLikes received7 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsReply to Email triggers URL button We have a URL button that uses API_editrecord to check mark the completed box on a record. We have an email notification that is triggered when a new record is added to the table. When we reply to the email notification, just within our company emails, I noticed that the reply is triggering the URL button. Does anyone know why this is happening? I've removed the rich text button from the email notification but still trying to figure out why replying to an email acts like clicking a button. SolvedSend test notification button gone There used to be a button to send test notifications, is this gone? Re: I am new to Quickbase Try something like this If( Contains([Renewal Discount], "Within Threshold") and Contains([Renewal ACV], "<$100,000"),"<div style=\"color:red\"> "& "Sales Leader Approval Required" & "<div>", "Sales Leader Approval Not Required" ) Re: Embed quickbase form on public web page Make the URL use API_GenAddRecordForm It will look something like this: https://yourdomain.quickbase.com/db/tableid?a=API_GenAddRecordForm Add these parameters to the end of the URL: &ifv=1&aftersaveconfirm=1 So you should end up with this URL to use for the iframe embed code: <iframe src="https://yourdomain.quickbase.com/db/tableid?a=API_GenAddRecordForm&ifv=1&aftersaveconfirm=1"></iframe> Text colors on new dashboard I'm trying to figure out why one text is white and one text is black when they both share the same background color ------------------------------ Everett Patterson ------------------------------ Re: How to show an embedded report in a reportYou can't do that anymore unless you know how to build code pages. I recommend that you keep using the standard reports and use links to open another report. ------------------------------ Everett Patterson ------------------------------ Re: Possible To Display Message on Button Push, then continue with APIs?No, if you are trying to insert javascript into a formula field, I would stop doing that now. It will not work in the future. Can you tell us the purpose of the alert on the button? We might be able to help you with other solutions if we can understand the problem better. ------------------------------ Everett Patterson ------------------------------ Re: Calculated Field in ReportYou should be able to do it on a table report, like this? Create a formula numeric field ------------------------------ Everett Patterson ------------------------------ Re: Upcoming Changes to JavaScript in QuickbaseFor the Formula Rich Text fields, there are two examples below, please confirm these will no longer work. Example 1: Magic Buttons app on exchange, one button has the Press to adjust % Completed and it contains javascript in the href attribute "<a href=\"javascript:" & "$.get('" & $urlseventy & "', function (){" & "location.reload();" Example 2: Formula Rich Text, uses <a> tag and inserts javascript via the onclick attribute "onclick=\"$('#_fid_56').val('" & $optionone & "'); $(this).siblings().children('p').css({'background-color':'#fff', 'color':'#52575b'});Re: Use a Variable in a javascript Alert boxClose, but string literal was missing the single quotes to enclose the text variable var text message = "My Test Message"; var text Danger = "<a style=\" text-decoration: none; background: #FF0000; border-radius: 5px; color: #fff; display: inline-block; width: 220px; text-align: center; padding: 8px 20px; font: normal 700 14px/1 \"Calibri\", sans-serif; text-shadow: none; \" href=\"javascript:alert('" & $message & "')\">MS Readiness</a>"; $danger ------------------------------ Everett Patterson ------------------------------