Jump to content

Harpreet

Caspio Ninja
  • Posts

    33
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Harpreet's Achievements

  1. I have two iframes in html, one is submission page and other is report page- When I submit in the first page, I want to automatically refresh my second page. Is it possible to do this?
  2. @CoopperBackpack and @Kurumi thanks for your input, I was able to create a script using kurumi approach,
  3. Hi, I have a data pae with 3 fields and 2 calculated virtual fields. When i have values in my 3 fields present it should submit the datapage and virtual fields are actually checking the values in two of the fields are same or not. I have javascript that it restrict the suvbmission when values are not matching and is working fine. Now I just need a script that it automatically hit submit when vakues in all 3 fields are present. Dtapage: In one datapage I am passing parameter for ROUTE and STORE and in main submission datapage I am receiving that parameter in vrtual fields. Attaching link for 2nd datapage: https://c5bkr868.caspio.com/dp/a9f8600012e8da52d3aa460d9274
  4. To have the aggregation based on conditions we can use flow like this SUM(IIF(JOB_FUNCTIONS LIKE '%ASSEMBLY%', [@calcfield:8], 0))
  5. @CoopperBackpack only some value and the datapage is disabled for mobile view
  6. Hi, I have two blocks and I want to do comparison and hight the second block to green if the value of second block is greater and highlight to red if the value of the second block is smaller. Now 16 is greater it should be green and if it was 7 then it should be red. @futurist and anyone else can you help with this.
  7. Hello , I am using a javascript that should restrict me from submitting form based on condition. I have field Start date and field End Date. Then I am using a virtual calculated field to find number of days from the above two fields. Now if my value is greater than 5 it should restrict me to submit the form <script> document.addEventListener('BeforeFormSubmit', function(event) { let checkValue = document.getElementById("cbParamVirtual3").value; if (checkValue > 5) { event.preventDefault(); alert("You are not authorized to create this account."); } }); </script> Ca anybody please help
  8. I have a data page which will be filled by user as a date range. For eg: User selected start date and end date, and name, address, vacation. Expected outcome: The date range should split all the dates and other column in new rows. Is this type of trigger possible. Eg: Webform----------Start date: 10/1712022 , End date 10/20/17, Name: Harpreet, Address: Toronto, Vacation : British Columbia Expected Result Data page : Date Name Address Vacation 10/17/2022 Harpreet Toronto British Columbia 10/18/2022 Harpreet Toronto British Columbia 10/19/2022 Harpreet Toronto British Columbia 10/20/2022 Harpreet Toronto British Columbia
  9. https://c5bkr868.caspio.com/dp/a9f86000a5a08feb7f614bcda5c6 This is my data page and there are number of fields with name Hours and I would to mark background to red when value is less than zero and black when value is greater than zero. This is detail datapage and I have disable the responsive tab
  10. https://c5bkr868.caspio.com/dp/a9f86000a5a08feb7f614bcda5c6 This is my data page and there are number of fields with name Hours and I would to mark background to red when value is less than zero and black when value is greater than zero. This is detail datapage and I have disable the responsive tab
×
×
  • Create New...