Jump to content

ReeganAnne

Members
  • Posts

    4
  • Joined

  • Last visited

ReeganAnne's Achievements

  1. Adding a header to the datapage with a style tag worked great for me! For submissions forms: <style> #InsertRecordfield_name{ text-transform: uppercase !important; } </style> For update forms: <style> #EditRecordfield_name{ text-transform: uppercase !important; } </style>
  2. Hi, is there any way to download the data from a Tabular Report Datapage via the API? Or even export it?
  3. In python it is possible to do this with a "while loop": #start with an empty list all_records_list = [] # while there is at least one record on a page, get each page and append it to the all_records_list while len(records_on_page) > 1: url = 'https://***.caspio.com/rest/v2/tables/***/records?q.pageSize=1000&q.pageNumber='+ str(i) response = requests.get(url,headers=headers) response_dictionary = response.json() records_on_page = response_dictionary['Result'] all_records_list.extend(records_on_page) # for clarity, print what page number we are on and how many records we have so far print("Page number "+ str(i)) print(len(all_records_list)) i += 1 Unfortunately Python is my strongest language, so I can only offer help in that regard. But I am sure there is a way to do the same in Javascript with a loop also!
  4. In my case, AtayBalunbalunan's suggested post, didn't help solve the problem. I am trying to find a way to use one button to update or submit multiple "Details" "Report" datapages that are embedded on the same webpage. Any advice would be greatly appreciated!
×
×
  • Create New...