-
Content Count
17 -
Joined
-
Last visited
About wimtracking2
-
Rank
Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I have a search datapage that displays results in a tabular report. When I search, based on what I see in the results, I want to select certain records to be included in my export or download to excel. Does anyone know a way to add a custom selection box to only download certain records from the tabular report?
-
I have a search and report datapage that when deployed on most Wordpress websites functions properly. On one wordpress website that uses (Theme X) the radio buttons are not displaying on the same line. In the datapage it is set to display "multiple options per line". The hint images are also displaying on the line under the label. I believe I need to enter custom css into the style in order to make the radio buttons display multiple options per line and the hint images to stay on the same line. What css can be used? Here is the app functioning with the issues when deployed: https://
-
- css
- radio buttons
-
(and 2 more)
Tagged with:
-
Limit User to 5,500 Record Downloads
wimtracking2 replied to wimtracking2's question in Security, Authentications, Roles, SAML
Hi @NiceDuck Yes, the data pulls from one View. It's a limit on the total count of all records downloaded over one year. So download one, they download a .csv file of 500 records, download two, they download a .csv file of 3,000 records. Now they have downloaded 3,500 records and can only download another 2,000. Once they download the last 2,000 records, the download option should be disabled. So they can download as many .csv files as needed, until the total count of all the records from each download reaches 5,500. Thanks so taking a look!- 2 replies
-
- record download limit
- user limit
-
(and 1 more)
Tagged with:
-
Limit User to 5,500 Record Downloads
wimtracking2 posted a question in Security, Authentications, Roles, SAML
I have a Report Datapage that displays Tabular results. I have enabled users to download their search results into a .csv file. I would like to limit the number of records (5,500) that each user can download over the course of 365 days. I would like to continue to allow them to download as many records each time they search until they have dowloaded 5,500. At that time I would like the download option to be disabled. Has anyone done this? Thanks- 2 replies
-
- record download limit
- user limit
-
(and 1 more)
Tagged with:
-
I was able to get this figured out. I needed to move my code to my footer. I have deployed an update datapage on Wordpress and the javascript below works fine. However, I deployed it on a Weebly website and it is not working. I have pasted the javascript below and then also the deployment code I put on Weebly. I have other custom javascript that is working on the same datapage, so wondering if the iMask might be the problem? Javascript in the Datapage: <script src="[@app:iMask/]"></script> <script type="text/javascript"> document.addEventL
- 1 reply
-
- javascript
- imask
-
(and 2 more)
Tagged with:
-
Hi @DesiLogi Is there anyway to use this same solution, but for the user to multi-select from checkboxes rather than the listbox?
- 11 replies
-
- javascript
- mulit-select
-
(and 2 more)
Tagged with:
-
wimtracking2 changed their profile photo
-
Auto format a phone number field javascript
wimtracking2 replied to mcates's topic in User JavaScript and CSS Discussions
Hi @Andrew I implemented your iMask framework to format my phone number fields and it worked great. I deployed my datapage into a wordpress site without a hitch. However, when deployed into a Weebly website, it did not work. Other custom javascript is working in the same datapage on the Weebly site. Curious if you have run into this before, know what would cause the issue and if you have suggestions on what I might try to get it to work? Below is the code I implemented and it works when deployed on a wordpress site. <script src="[@app:iMask/]"></script> <script ty -
I did get this answered through another post: https://forums.caspio.com/messenger/465/?tab=comments#comment-831
- 11 replies
-
- javascript
- mulit-select
-
(and 2 more)
Tagged with:
-
multi-select Passing Caspio Multi-Select Data to FormStack via Zapier
wimtracking2 replied to wimtracking2's question in API and Integration
Thank you @douvega, your code worked perfectly. I was able to implement it for 8 fields needing to function the same way. <script type="text/javascript"> //JS code created by douglas.vega1989@gmail.com function f_listbox(fieldObj) { //Set field to multi-select fieldObj.multiple = true; //Get field values var values = fieldObj.value; if (values.indexOf(",") > 0) { for (var i=0 ; i < fieldObj.options.length; i++) { if(fieldObj.value == values) { fieldObj.remove(i); break ; } } var arr = values.sp- 7 replies
-
- zapier
- submission form
-
(and 1 more)
Tagged with:
-
multi-select Passing Caspio Multi-Select Data to FormStack via Zapier
wimtracking2 replied to wimtracking2's question in API and Integration
@douvega I modified the code per this post This is what I have: <script type="text/javascript"> function f_listbox(v_state) { if ( v_state.indexOf(",") > 0 ) { for (let i=0 ; i < o_state.options.length; i++ ) { if(o_state.value == v_state) { o_state.remove(i); break ; } } let o_st = v_state.split(", ") ; for (let j=0 ; j < o_st.length; j++) { for (let i=0 ; i < o_state.options.length; i++ ) { if(o_st[j]== o_state.options.value){ o_state.options.selected = true ; break ;- 7 replies
-
- zapier
- submission form
-
(and 1 more)
Tagged with:
-
multi-select Passing Caspio Multi-Select Data to FormStack via Zapier
wimtracking2 replied to wimtracking2's question in API and Integration
Thanks @douvega I followed your suggestion and set up a multiselect listbox as you listed in your option 2. (Follow this Caspio solution for a Multiselect Listbox option: https://forums.caspio.com/topic/4315-js-multiselect-listbox-in-update-datapage/) This is working, however, I am using an update form. I would like the current options to be individually pre-selected, rather than a list pre-selected. See attachments, Capsio1.png is what is currently displayed. I would like it to show up as it does in Caspio2.png. Do you know how to accomplish this? Thanks again,- 7 replies
-
- zapier
- submission form
-
(and 1 more)
Tagged with:
-
Hi @Vitalikssssss This solution is working for me on an update submission form. Thank you. Is there a way that it can be altered to pre-select the listbox options individually as stored in the database rather than selecting one option summarizing the data in the table. See attached images. Caspio1.png shows how the field currently shows up in the update form based on the current data in the table. I would like it to display as shown in caspio2.png. Can this be done? Thank you
- 11 replies
-
- javascript
- mulit-select
-
(and 2 more)
Tagged with:
-
wimtracking2 reacted to a post in a topic: js Multi-select for 3 Listboxes on same Submit datapage
-
I have built a Caspio submission form that contains 8 fields that collect data using a multi-select string field. Upon submission of the data, I need to send the data to FormStack. I am using Zapier to do so. The problem I am running into is that Zapier does not read the multi-select data field. Does anyone know of a work around of how I can collect the data via a multi-select field in a submission form and send the data to another database?
- 7 replies
-
- zapier
- submission form
-
(and 1 more)
Tagged with:
-
I needed a similar way for users to search for duplicate accounts and merge through a datapage. I just added an HTML field on an account datapage and sent parameters to a new datapage that was pre-filtered using the parameters from the account they were on.
-
Page Break in Gallery Report
wimtracking2 replied to wimtracking2's topic in User JavaScript and CSS Discussions
This worked: window.onload = function () { var table = document.getElementById("caspioform").getElementsByTagName("table")[0]; table.style.pageBreakInside = "auto"; for (var row of table.rows) { row.style.pageBreakAfter = "auto"; row.style.pageBreakInside = "avoid"; } }- 2 replies
-
- page break
- gallery report
-
(and 1 more)
Tagged with: