ContributionsMost RecentMost LikesSolutionsRe: Can you prohibit a role from adding columns to a report? Thanks, that is what I was looking for. I would mark it as a solution but I can't seem to figure out how to do that lol. Any way to restrict showing more columns? Is there any way to restrict an entire role from being able to add columns to a report (or is that a report option?)? Or is the only way to go into each field and uncheck the box to allow it to be added to reports, or set permissions on every single field so that a certain user role cant see it? Re: Allow users to edit multiple forms It's always bugged me that if you use the native edit button, it edits on the default form, rather than the form the user is currently on. The work around, as you found in this thread is a custom edit button. I haven't tested on new forms, maybe new forms will launch into edit mode based on the current form being viewed? Re: File Name for PDF attachments Jeff, Unfortunately this only works to rename the file if you use their custom Formula URL button. When using a custom notification and attaching the document template, it creates the name document-1.pdf, and this name cannot be changed at this time. Upvote if you get a chance! It's actually more important to be able to control the name when attached to an email, in my opinion. Have a rich text button span the width of mobile Device On legacy forms, when using a mobile device there were some ways to make a rich text button span the width of the mobile device. You could use: class='Vibrant' or in the styling you could use width: 100%. Neither of these tricks work on the new forms (on mobile). Does anyone know of way to make a rich text button span the width of a mobile device on new forms? Re: File Name for PDF attachments There is currently no way to name it. There is feedback for this and they are gathering input, so upvote it! I already did. We really need to be able to name the file. https://feedback.quickbase.com/app/#/case/442341?cpid=b275a097-c042-49f4-94a8-81e35eecee20 How do you use the Success Popup in the New Form Rules? I've been playing around with the new forms, and form rules. One cool feature is the Success Modal/Notification. However, there is no option (as far as I can tell) to have it display when a field changes. It looks like you can display the message when a record is added or edited. So for example, if I want to display a success message when [Field A]="True!", my only option is to display message when [Field A]=True! This means, EVERY time a user goes to edit that record, the success message shows. When would that be useful? Why would you want a success message to show every single time a user is in a record, rather than when a certain action happens (the equivalent of 'when the rule changes from false to true')? My use case is I want a message to show when a checkbox is checked. And that's it. Just when it is checked, not every time anyone looks at the record and the checkbox happens to be checked. Thoughts? Has anyone used the success message in any helpful way? Re: Formula button on a form that opens an add record screen as a popup A formula URL button has a selection in the field settings to Open in a Popup window. That is the easiest solution, but you also cannot control the popup size. To control the size, you can use a rich text formula. In general, you use class OpenAsPopup class='OpenAsPopup' data-height=800 data-width=900 data-refresh=true (data-refresh=true will refresh your page when you close the popup, simply delete that if you do not want auto refresh) Incorporate in a button as you need, sample below (but there are lots of ways to construct the button in a rich text field) var text URL = URL Here; "<a class='OpenAsPopup' data-height=800 data-width=900 data-refresh=true style=\"text-decoration:none; background: #688EB3; border-radius: 5px; color: #ffffff; display: inline-block; padding: 4px 0px 0px 0px; width:145px; height:22px; text-align: center; text-shadow: none; border: 0px solid #030404; font-size: 12px \"href='" & $URL & "'>Button Words Here</a>" Re: Report with Images Too Large The thumbnail is only good for viewing small. Any form maker (Native or Juiced) will still use the original file size. I struggled with this for years. Juiced does have a reducer add-on that works great. We used that for about 3 years before I finally hired a coder to make me a custom code page to help solve our issue. Either way, you will need to use a 3rd party to actually reduce the file sizes. Re: Add child record through parent form and redirect back to parent form in edit mode Sorry, Mark is right, I forgot a very important part. It needs to be a formula rich text. Also, you need to have data-replaceRid=true and SaveBeforeNavigating in the button code as shown below. Try changing your field to a formula rich text and using this code: var text RID = If([Record ID#]>0, ToText([Record ID#]), "%%rid%%"); var text RedirectNoRecordID=URLRoot()&"db/"&Dbid()&"?a=er&rid="; // REDIRECT TO THE FORM IN EDIT var text url = URLRoot() & "db/" & [_DBID_PROVIDER_DETAILS] & "?a=API_AddRecord&apptoken=xxxxxx" & "&_fid_48=" & $RID & "&_fid_39=" & [Data Source 2] & "&_fid_25=" & [Brief description of data] & "&_fid_42=" & [Approx # Interfaces] & "&_fid_37=" & [Data Classification] & "&_fid_41=" & [Record ID#]; //why is field 41 here? what is field 48 then? This is incorrect but we can only set one field to $RID, so pick the related field. "<a class='SaveBeforeNavigating' data-replaceRid=true style=\"text-decoration:none; background: #1ba802; border-radius: 5px; color: #ffffff; display: inline-block; padding: 4px 6px; text-align: center; text-shadow: none; border: 2px solid #1ba802; font-size: 12px \"href='" & $url & "&rdr=" & URLEncode($RedirectNoRecordID) & $RID & "'>Button Words here</a>" //You can use any rich text button code, but you must include the data-replaceRID=true.