-
Content Count
71 -
Joined
-
Last visited
-
Days Won
2
Franchiser last won the day on May 24 2018
Franchiser had the most liked content!
About Franchiser
-
Rank
Advanced Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Page Containing Header Record and Matching Detail Records in 1 Page
Franchiser replied to Reggie14's question in DataPages
@Reggie14 Can you try using the new feature of Caspio calculated value? -
Day of the week in table
Franchiser replied to kvarjavand's question in Calculations and aggregations
@kvarjavand I tried to replicate the issue from my end and I don't received error when verified. Can you try to remove the affected fields to use in this Web Form and hit save. Then, re-select them all and check? -
Triggered Action just with last update
Franchiser replied to rrodask's question in Tables, Views and Relationships
@rrodask @BaySunshine is correct. Use #inserted to make this work.- 5 replies
-
- triggered actions
- conditions
-
(and 1 more)
Tagged with:
-
@waltmayo No, Caspio still isn't releasing a new style. I have this inquiry with one of the tech support and I was redirected to their ideabox link.
-
Copy value in one field to another when checkbox is clicked
Franchiser replied to NeoInJS's question in General Questions
@NeoInJS You can try this code in the footer: <script> function populateText() { if(document.getElementById('chechboxid').checked) { var str=document.getElementById('textbox1id').value;// textbox in which you enter data document.getElementById('textbox2id').Value= str; } } //call the javascript function as attribute to checkbox in pageload method of your .aspx page pageload() { checkboxid.attributes.add("onclick","populateText();"); } </script> -
Passing Parameter from Parent URL to Embedded tabs
Franchiser replied to rgiljohann's question in Parameters
@rgiljohann I am not sure onto what you are trying to achieve? Do you want to update a parameter in the URL, or add it if it doesn't exist, but keep any other variables the same value? -
@ezIQchad autocomplete=”off” is not valid markup with XHTML Transitional, which is a common DOCTYPE. I always have this code in web programming and it is working until now, you may try this and it might help. if (document.getElementsByTagName) { var inputElements = document.getElementsByTagName(“input”); for (i=0; inputElements; i++) { if (inputElements.className && (inputElements.className.indexOf(“disableAutoComplete”) != -1)) { inputElements.setAttribute(“autocomplete”,”off”); } } }
- 11 replies
-
- javascript
- autocomplete
-
(and 1 more)
Tagged with:
-
CKEditor (Text Area editor) locks up...
Franchiser replied to ronbrumbarger's question in General Questions
@ronbrumbarger, Try this code: .modal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } If does not work, you can try this JavaScript code <script> CKEDITOR.on('dialogDefinition', function(e) { var dialogName = e.data.name; var dialog = e.data.definition.dialog; dialogDefinition.onShow = function() { var x_pos = this.getPosition().x; var y_pos = 10; this.move(x_pos, y_pos); // Top center this._.moved = 1; }; }); </script> -
CKEditor (Text Area editor) locks up...
Franchiser replied to ronbrumbarger's question in General Questions
Hi Ron, I have talked to someone with the support team and I was told that there were no changes made with the frame deployment. They advised me to make the height lessen but will not work with my case. The issue causes the height of the frame the way it was set up, So, I did used the CSS to do the trick and it works for me. -Franchiser- -
@Lianamelissa watch this and you might change your mind.
-
@Casey You don't need to use API or javascript, cascading element can do the trick. Try to elaborate the part in where you stumble in cascading and I might provide help. -Franchiser-
-
@yona34 This will make you feel good:
-
Using Query Strings With Qr Code Generator
Franchiser replied to juancoffee's question in Parameters
@juancoffee This provide full url that you can use in caspio https://zxing.appspot.com/generator/- 5 replies
-
- QR codes
- query strings
-
(and 1 more)
Tagged with:
-
FileStor only way to get uploaded file URLs exported to Excel? $100/month
Franchiser replied to roattw's question in General Questions
@roattw Was this issue resolved? I have this before and used javascript to work. -Franchiser- -
Can I Import From Excel File Through Datapage
Franchiser replied to tborley's question in Import/Export and DataHub
@edujobs2k18 A Web API is a development in web services where emphasis has been moving to simpler representational state transfer (REST) based communications.A web service is an application or data source that is accessible via a standard web protocol (HTTP or HTTPS). Unlike web applications, web services are designed to communicate with other programs, rather than directly with users. While web services can provide data in a number of different formats, XML and JSON are the most common. These standard text-based formats can be easily recognized and parsed by another program that rec