Search found 206 matches

by justinlakier
September 19th, 2024, 12:53 pm
Forum: Android
Topic: Two issues in Android data collection
Replies: 1
Views: 46

Re: Two issues in Android data collection

Hello, For your first issue with radio buttons, CSPro does not allow a large degree of customization on the display of the basic radio button dialog. Using shorter labels is the easiest solution, with additional details in the question text rather than in long answer text. However if you want to cus...
by justinlakier
September 19th, 2024, 12:07 pm
Forum: Android
Topic: data access path on android phone
Replies: 1
Views: 61

Re: data access path on android phone

Hello, CSEntry data is stored at Android/data/gov.census.cspro.csentry/files/csentry, under the folder for the specific CSEntry project. For synchronizing questionnaires, check that you are deploying all of them to Dropbox correctly. You can save the csds file of the Deploy Tool and check that you a...
by justinlakier
September 13th, 2024, 3:06 pm
Forum: Editing
Topic: Count with a two level dictionary
Replies: 2
Views: 103

Re: Count with a two level dictionary

Hello, Please see the answer to your previous question on the forums on the same topic, https://www.csprousers.org/forum/viewtopic.php?t=4040. We still recommend against using two-level applications. It is not certain from just the dictionary and data file provided, but it is likely that Greg's advi...
by justinlakier
September 11th, 2024, 6:03 pm
Forum: Entry
Topic: Function to capture demode and ispartial
Replies: 1
Views: 99

Re: Function to capture demode and ispartial

Hello, See EndLevel documentation. Endlevel's use depends on where it is called, however it is likely that you are skipping the function call entirely and the function should go before your call to endlevel. OnStop should be activating as long as you are not ending the application with stop(). You c...
by justinlakier
September 11th, 2024, 10:38 am
Forum: Entry
Topic: Method to check for newer application versions
Replies: 2
Views: 137

Re: Method to check for newer application versions

Hello, The code I have used previously to handle newer application versions is that whenever the user syncs with the server, they record diagnostic ("md5","file.pff") and diagnostic("md5","file.pen") for their current files. Then they use syncfile to GET the ....
by justinlakier
September 11th, 2024, 10:22 am
Forum: Feature Requests
Topic: CSweb capabiity to allow multiple projects
Replies: 2
Views: 192

Re: CSweb capabiity to allow multiple projects

Hello, If you believe you will be working with multiple projects concurrently which share similar dictionaries, it is recommended to modify dictionary names to avoid overlap. For instance, rather than two "HOUSEHOLD" dictionaries, you may need to have "HOUSEHOLD_PROJECT_1" and &q...
by justinlakier
September 10th, 2024, 4:37 pm
Forum: Entry
Topic: Download data Function from server
Replies: 2
Views: 105

Re: Download data Function from server

Hello,

You can use SyncConnect(csweb server). Once you are connected to the CSWeb server you can use SyncData, SyncFile, or other sync functions to download data.

Hope this helps,
Justin
by justinlakier
August 21st, 2024, 10:26 am
Forum: Entry
Topic: View/review only mode
Replies: 1
Views: 3070

Re: View/review only mode

Hello, To get Read-Only Mode for a case, you can use Case.view() . You can also put data in a templated HTML report and call Report.view() . Case.view allows you to easily view the data of a specific case once loaded, however you would need to have some other way to load each case you want to review...
by justinlakier
August 18th, 2024, 5:44 pm
Forum: Entry
Topic: Conditionally Autofilliing system date if date is not there in field
Replies: 2
Views: 3494

Re: Conditionally Autofilliing system date if date is not there in field

Hello, Please see the example listed on the VisualValue Function documentation page. You can check if a field is blank by checking if its visualvalue is equal to notappl. VisualValue allows you to check whether anything has been entered for a field no matter where you are in the entry. Hope this hel...
by justinlakier
August 15th, 2024, 5:45 pm
Forum: Feature Requests
Topic: Implementing User-Specific Data Access in CSWeb Server
Replies: 5
Views: 9109

Re: Implementing User-Specific Data Access in CSWeb Server

Hello, The permissions for roles on CSWeb are based only on which dashboard pages the user has access to. If the user has access to the Data page, they have full access to the Data page and can upload/download data there as normal. If they do not have access to the Data page, then they cannot visit ...