Jump to content

wgalliance

Caspio Ninja
  • Posts

    43
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    wgalliance got a reaction from bookish in Conditionally hide column in tabular report   
    In case anyone comes across this post, I did finally find an answer to my question.
     
    If I deploy the style to hide the column in the header of the WEBPAGE (vs header of the caspio page) then I can conditionally hide columns.
    Based on what page I am on, I hide different columns. Works perfect!
  2. Like
    wgalliance got a reaction from TWIRED in Js: Checkboxes For Multi-Optioned Entries   
    I need this function for one of my datapages but the difference is that I have an update form which needs to store the separate checkbox fields so I cannot use virtual fields. Can this script be used with actual checkbox fields rather than virtual fields?
  3. Like
    wgalliance reacted to vorasity in Electronic Signature Pad capture in Caspio   
    Any thoughts or comments about how an electronic signature pad could be interfaced with a Caspio database.
    We are trying to build a concierge app which will allow clients to sign-in / sign-out parcels using an electronic signature pad and then store to captured signatures in the Caspio database for later retrieval/confirmation.
    Thanks in advance,
    ..Stephen
  4. Like
    wgalliance reacted to kRv in Java To Remove Hyphen In Login Page   
    Hello wgalliance,
     
    HTML element "form" doesn't have "onchange" event. Also after change variable "a" you didn't set it back to "value" property of input element. 
     
    Please add this script to footer of authentication which you use.
     
    <script type="text/javascript">         function nophyphen() {             var ctrl = document.getElementById("xip_UserId");             if (ctrl) {                 ctrl.value = ctrl.value.replace(/-/g, "");             }         }         var xip = document.getElementById("xip_UserId");         if (xip) { xip.onchange = nophyphen };     </script> Please pay your attention, that you need to change "xip_UserId" to correct name of your field.
     
    You can see example below
    https://c2ebv261.caspio.com/dp.asp?AppKey=B4D84000c0990f53c7f4496d8943
     
    Thanks
×
×
  • Create New...