
casGary
Caspio Ninja-
Content Count
33 -
Joined
-
Last visited
-
Days Won
2
casGary last won the day on July 26 2014
casGary had the most liked content!
About casGary
-
Rank
Advanced Member
-
telepet reacted to an answer to a question: Is There Still A 'range' Option In Comparison Type Dropdown?
-
Hello EIQ, This function is supported only by the following versions of browsers: Internet Explorer 9.0+,Chrome 17.0+, Opera 9.6+, Safari 5.2+, Firefox 4.0+, Android 2.3+, iOS 3.0+ Maybe you are using the earlier version of chrome.
- 11 replies
-
- javascript
- autocomplete
-
(and 1 more)
Tagged with:
-
Ovidium reacted to a post in a topic: Timestamp on a change event in a Dropdown menu
-
Dynamically Summing Fields In A Submission Form
casGary replied to sjmcarter's topic in User JavaScript and CSS Discussions
Hello cgonzalezalcala, You just need to reference your caspio fields correctly. The script seem to be working fine. Here you will find the full information on how to refence your fields. best regards. -
Dynamically Summing Fields In A Submission Form
casGary replied to sjmcarter's topic in User JavaScript and CSS Discussions
Hi again, Do you want to place the sum of your four fields to the fifth one? Could you specify what exactly you wish to implement? Regards -
cgonzalezalcala reacted to a post in a topic: Dynamically Summing Fields In A Submission Form
-
Dynamically Summing Fields In A Submission Form
casGary replied to sjmcarter's topic in User JavaScript and CSS Discussions
Hi cgonzalezalcala, Here is a suggestion <script type="text/javaScript"> function mySum(){ var one = parseInt(document.getElementById("ID_OF_THE_FIRST_FIELD").value); var two = parseInt(document.getElementById("ID_OF_THE_SECOND_FIELD").value); var three = parseInt(document.getElementById("ID_OF_THE_THIRD_FIELD").value); if(!one) { one=0; } if(!two) { two=0; } if(!three) { three=0; } document.getElementById("four").value = one + two + three; } document.getElementById("ID_OF_THE_FIRST_FIELD").onchange = mySum; document.getElementById("ID_OF_THE_SECOND_FIELD").onchange -
How To Restrict Search Results Based On Yes/no Value In Table
casGary replied to JaredEilering's question in Tables, Views and Relationships
Hello Jarede, I would suggest you to create a view to filter data in your table, based on the value of your yes/no field. Here is the instruction on how to set up this filter. Let me know if it helps. -
How Can I Format A Text Field As A Dollar?
casGary replied to Bangalore's topic in User JavaScript and CSS Discussions
Hi Bangalore, Can you describe it in more details. What kind of DataPage do you use, which field is that, what would you like it to look like? -
Conditional Background Color Change
casGary replied to senicholas's topic in User JavaScript and CSS Discussions
Hello Senicholas, Try to implement it this way: <script> function f_color(){ var myVal = parseInt(document.getElementById('ID').value); if (myVal > 7) { document.getElementById('ID').style.color = "red"; } } document.getElementById('ID').onchange= f_color; </script> -
Using X,y Coordinates In Map Mashup
casGary replied to CASPIOHELEEN's question in API and Integration
Hello Caspioheleen, I think you may find this video helpful. http://howto.caspio.com/getting-started/how-to-embed-a-google-map-in-your-website/ Regards. -
HEllo again, I suppose that will not be possible to implement.A good option would be to create several DataPAges with predefined criterias and render them to your page with the help of JavaScript. Regards
-
HI theconav, Could you describe your question in more details? What exactly are you trying to implement?
-
How To Assign Parameter Values In Page Html (Not Url String)?
casGary replied to kparisella's question in Parameters
Hello kparisella, COuld you specify, where do you expect that snippet of code to get the required values to pass. -
Hi SCUSBYouth, Can you describe it in more details. On which DataPage, in which conditions it is happening?
-
Hello sawa0018, Can you specify, do you want your details page to be an iframe or you want to render some extra web page to your details page?
-
Concatenate In The Calculated Field
casGary replied to Elena's question in Calculations and aggregations
Calculated field is ment to do some math calculations, if you need to concatenate strings, virtual fields should work better. -
Concatenate In The Calculated Field
casGary replied to Elena's question in Calculations and aggregations
Hi Elena, In JavaScript it is the concat() method, but not concatenate(). have a look http://www.w3schools.com/jsref/jsref_concat_string.asp Hope it helps.