Jump to content

Teshan

Members
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Teshan's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. This configuration does not work with new styles in version 21.0
  2. Hello, [@cbTimeStamp*] set the date in mm/dd/yyyy, how can we set this as dd/mm/YYYY Thanks
  3. Hi, I am trying insert a record which has a auto number. I am trying return auto-number in my response but it returns nothing. can anyone advise on this. table :TBL_TEST{uid autonumber,ID string ,NAME string} function CallWebAPI1() { var params={"ID":"1","NAME":"test"}; request.open("POST", "https://XXXXX.caspio.com/rest/v1/tables/TBL_TEST/rows", true); request.setRequestHeader("Authorization", "Bearer "+ accessToken); request.setRequestHeader("Accept", "application/json"); request .setRequestHeader("Content-Type", "application/json;charset=UTF-8"); request.send(JSON.stringify(params)); request.onreadystatechange = function () { if (request.readyState == 4 && request.status== 201) { var response = request.responseText; //request.responseText returns empty here. } } }
  4. same error, when enter authentication field
  5. This signature pad does not work on mobile devices can anyone help to get it work in mobile devices, on chrome Thank you
  6. Hi, "\n" does not creating a new line on email ? possible to pass the html tags instead ? Thank you
×
×
  • Create New...