Jump to content

Aurora

Caspio Guru
  • Posts

    115
  • Joined

  • Last visited

  • Days Won

    8

Aurora last won the day on September 28 2016

Aurora had the most liked content!

2 Followers

Recent Profile Visitors

1,599 profile views

Aurora's Achievements

  1. Hello.

    Looking to insert advertising  in between listings that show up based on user search options. Datapage I am using for the listings is "listing" datapage. and it has a search option and filter up font that they end up with X amount of listings.

    Is there a way to do this? Image attached shows listings. Thanks! :) 

    Capture.JPG

  2. Hi all, Does anyone know how to make image responsive? There is a responsive code for image, but it doesn't work on datapage when you have an image. Thanks
  3. Hi there, I think the best and easiest solution is to use drill-down reports in the Pivot Tables: http://howto.caspio.com/datapages/reports/pivot-table/ A.
  4. Hello! There are few ways to receive parameters : 1) On load 2) Filter by pre-defined criteria 3) Directly to Iframe Please take a look at this posts: http://howto.caspio.com/parameters/receiving-parameters/
  5. Hi! Maybe you can try to add cbResetParam=1 to the end of the URL of the DataPage in Iframe, like : <iframe name="Dating Messages" title="Dating Messages" src="https://c0ebl890.caspio.com/dp.asp?AppKey=52e04000b0d85d4a090241fa8928 &cbResetParam=1 ">Sorry, but your browser does not support frames.</iframe>
  6. Hi all ! Does anyone has a solution for this? I need to hide some text on the details page, when AuthField' value is not equal value from the Field#2. Merci!
  7. Try this one: <SCRIPT LANGUAGE="JavaScript"> document.getElementById("Mod0DeleteRecord").style.display = 'none'; function MyFunction() { var stat=document.getElementById('cbParamVirtual1').value; var del = "Delete"; if(stat==del) { document.getElementById("Mod0DeleteRecord").style.display = 'initial'; } else {document.getElementById("Mod0DeleteRecord").style.display = 'none'; } } document.getElementById('cbParamVirtual1').onchange=MyFunction; </SCRIPT>
  8. Hi Mylene, That's easy. You should add Virtual Field, where users will type "Delete". Use the following code: <SCRIPT LANGUAGE="JavaScript"> var stat=document.getElementById('cbParamVirtual1').value; if (stat ==!'Delete') { document.getElementById("Mod0DeleteRecord").style.visibility = 'hidden'; } </script> Happy Holidays
  9. Hi Satch, You can take a Virtual Field by ID as well : document.getElementById("cbParamVirtual1"). There is a similar script here: http://forums.caspio.com/index.php?/topic/3149-js-perform-a-calculation-on-values-entered-in-a-webform/
  10. Hi Rentosa, Could you please clarify the name of parameter that you send, like.... &street=[@field:location] and the name of parameter you receive. Aurora
  11. Hello Gregstand, Yes it is possible to pass and receive parameters in Iframe: Aurora
  12. Hi there. If you open the localization , you can change " no record found" message there. http://howto.caspio.com/localizations/modifying-a-localization-object/ A.
  13. Hi Robert, You can use dropdown with Custom values and LookUp Table and use RLS there. On load you can receive external parameters of the auth field. In this case default value will be the one that you receive as parameter. A.
  14. Hi zalipresents, What is this? If I understand correctly, you use Cascading Field as a trigger for calculation? If yes, then I am afraid It is not possible. Perhaps, it is possible for .onsubmit action. ( Not sure). Aurora
×
×
  • Create New...