
Elderberg
Caspio Ninja-
Content Count
64 -
Joined
-
Last visited
-
Days Won
1
Elderberg last won the day on August 3 2020
Elderberg had the most liked content!
About Elderberg
-
Rank
Advanced Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Elderberg reacted to an answer to a question: Duplicate Records in a View
-
Run task on more than the limit of records
Elderberg replied to Shiro's question in Tables, Views and Relationships
thanks -
Run task on more than the limit of records
Elderberg replied to Shiro's question in Tables, Views and Relationships
I'm not sure the technical reasons, but is this limit associated with a lower tier plan or across all plans? I'm curious if there is a cost to increase the limit as an add-on or if included in a higher tier plan -
I have the below code inserted into an HTML Block. The first line creates a link and passess the parameters to the new page. However, it seems like caspio is not rendering the <form> and </form> and so clicking on the submit button it just refreshes the page. Does anyone have any experience with embedding a form inside html block like this? Ultimately i'm just trying to launch a new page and pass parameters securely. <a href="1045_Report.php?CMPID=[@field:CMP_ID2]&LID=[@field:Codename]&GBL=[@field:GroupByLabel]" target="_blank">R
-
Is it possible to pass parameters more securely using POST instead of GET?
-
Update Form via javascript
Elderberg replied to Elderberg's topic in User JavaScript and CSS Discussions
Hey thanks.. this is great! -
Pivot tables, Calculated fields and HTML blocks
Elderberg replied to Farnsbarnes's question in Tables, Views and Relationships
I too would appreciate the ability to add HTML blocks and calculated fields to pivot tables. I went searching the forums for a solution, and came upon this post. -
deemuss reacted to a post in a topic: Inline edit only in certain circumstances
-
Vitalikssssss reacted to a post in a topic: Inline edit only in certain circumstances
-
Inline edit only in certain circumstances
Elderberg replied to NikkiC's topic in User JavaScript and CSS Discussions
Just leaving this here ... <script> document.addEventListener('DataPageReady', function(event) { function hideControlsForPerson() { var table = typeof document.getElementsByClassName("cbResultSetTable" + event.detail.uniqueSuffix)[0] == "undefined" ? document.getElementsByClassName("cbResultSetTable")[0] : document.getElementsByClassName("cbResultSetTable" + event.detail.uniqueSuffix)[0]; // Find the index of the last column, which happens to be the inline edit/delete var total_num_columns = table.rows[0].cells.length; var controlsCo -
Inline edit only in certain circumstances
Elderberg replied to NikkiC's topic in User JavaScript and CSS Discussions
Hi There, Would it be possible to update this to automatically find the Index for "nameColumnIndex" and "controlsColumnIndex" based on the name of those fields by counting until some condition is met? This would help when we add change the column positions later on so as not to break the code. Thanks in advance -
Update Form via javascript
Elderberg replied to Elderberg's topic in User JavaScript and CSS Discussions
Did some reading and testing.. my solution, isn't perfect, it just submits the last form on a page with multiple forms. Note that this counts ALL forms and not just forms with "caspioform" as the ID. var x = document.forms; x[x.length-1].submit(); -
Update Form via javascript
Elderberg replied to Elderberg's topic in User JavaScript and CSS Discussions
I've isolated the issue to when i have 2 data pages.. with the update page being the second one. I think the document.forms["caspioform"].submit() is submitting the first datapage (which is a HTML page). Any ideas. -
I've inserted the following into an html block: <input type="button" name="Mod0CancelRecord1" value="CANCEL" class="cbBackButton"> And then in the footer i've inserted: document.getElementsByName('Mod0CancelRecord1')[0].onclick = function(){ if (confirm("Close Window?")) { window.close(); } }; but unfortunately i've discovered : Any ideas or suggestions are welcome
-
Hi, i've selected Custom option using Totals and Aggregation.. how do I use the Custom option to do summation?