-
Content Count
222 -
Joined
-
Last visited
-
Days Won
3
Meekeee last won the day on September 9 2019
Meekeee had the most liked content!
About Meekeee
-
Rank
Advanced Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Meekeee reacted to a post in a topic: Line-through in Data
-
Meekeee started following How to disable the fields if the data already exist, Changing value in a column of tabular report, Hide Column In Tabular Report and 7 others
-
Hello @DDNex, Are you referring to conditional show of link based on the a certain value? If yes, you can create a Calculated Field to get this value then use the Calculated field in the HTML Block. Calculated Field Formula: CASE WHEN [@field:Requested_Action]='Update Sales' THEN 'https:<yourlink>?Request_ID=[@field:Request_ID]' ELSE 'https:<yourlink>?Request_ID=[@field:Request_ID]' END Then add this in HTML Block: <a href="[@calcfield:1]">View Request</a> In the Report, you will see the Calculated field, if you would like to hide
-
Hide Column In Tabular Report
Meekeee replied to Master's topic in User JavaScript and CSS Discussions
Just an update, for new version of Styles and when your DataPage's configuration is set to "enable responsive". Here's the new code: Header: <style> #target table:nth-of-type(1) td:nth-of-type(5) {display: none;} #target table:nth-of-type(1) th:nth-of-type(5) {display: none;} </style> </header> <div id="target"> <header> Footer: </footer> </div> <footer> Thank you @Vitalikssssss for this solution. For reference of new responsive feature, you could check it here: https://howto.caspio.com/datapages/responsive-da- 11 replies
-
- hide columns
- tabular report
-
(and 1 more)
Tagged with:
-
Just an update: You could use the Calculated Values on this one. Calculated Value form element generates dynamic calculations that automatically update as users interact with your form. Similar to Formula Fields and Calculated Fields, you can construct the calculation using functions, logic, constants, values from other fields and SQL expressions that you can use for your Total: https://howto.caspio.com/datapages/datapage-components/calculated-values/ OR Try to use Formula Field instead: https://howto.caspio.com/tables-and-views/data-types/formula-fields/ I hope it helps!
-
Just an update: You could use Virtual Field instead and have it as Calculated Value. You can insert the email address in the Virtual Field and set it to the "To" Address. For more information about Virtual Field and Calculated Value, check it here: https://howto.caspio.com/datapages/datapage-components/virtual-fields/ https://howto.caspio.com/datapages/datapage-components/calculated-values/ I hope it helps!
-
Adding The Values Of 2 Number Fields Together.
Meekeee replied to jnordstrand's question in Tables, Views and Relationships
Just an update: You could use the Calculated Values on this one. Calculated Value form element generates dynamic calculations that automatically update as users interact with your form. Similar to Formula Fields and Calculated Fields, you can construct the calculation using functions, logic, constants, values from other fields and SQL expressions that you can use for your Total: https://howto.caspio.com/datapages/datapage-components/calculated-values/ OR Try to use Formula Field instead: https://howto.caspio.com/tables-and-views/data-types/formula-fields/ I hope it helps! -
This is only for the progress bar of the page as also indicated here: If you want it to be redirected in a page, your new workflow is correct. I hope it helps!
-
Just an update: You could now insert it in the emails, check it here: https://howto.caspio.com/automatic-emails/ I hope this helps!
-
Conditional Input / Cascading "text" boxes
Meekeee replied to sg1234567's topic in User JavaScript and CSS Discussions
Just an update: You could try to check the Conditional Forms to disable the field: https://howto.caspio.com/datapages/forms/conditional-forms/I hope this helps! -
How to disable the fields if the data already exist
Meekeee replied to derek's question in General Questions
You could try to check the Conditional Forms to disable the field: https://howto.caspio.com/datapages/forms/conditional-forms/ I hope this helps! -
You could deploy the two DataPages in one web page and check this article for your desired workflow: https://howto.caspio.com/tech-tips-and-articles/tech-parameters/results-and-details-on-two-separate-web-pages/ I hope it helps!
-
How do I code a JavaScript pop up window?
Meekeee replied to AnisDuncan's question in General Questions
You can refer to Caspio's link menus and pop-up window generator here: https://howto.caspio.com/tech-tips-and-articles/common-customizations/how-to-generate-link-menus-and-popup-windows/ I hope it helps! -
Just an update, if you wanted to show a certain image on the associated record. For display purposes, you could now use Virtual Field and Calculated Value. Or you may check this post: I hope this helps!
-
Convert a text or number string into a TIME format?
Meekeee replied to roattw's topic in User JavaScript and CSS Discussions
Can you try this formula: CONVERT(DATETIME, CAST(LEFT([@field:Time],2) +':'+ RIGHT([@field:Time],2) AS VARCHAR(10)), 114) -
Hi @mdupras, Just an update. You may also use the new feature TASK on this certain scenario. This allows you to send emails based on a predefined time schedule which you can use to your workflow. To know more about Tasks, check it here: https://howto.caspio.com/tasks/ Check this video for more information I hope it helps!