|
Tips and Tricks |
|
This section will describe workarounds and tricks we use for Collaborator. Picking reviews through the Command-Line Client When sending files to a review through the Command-Line Client, use "last" instead of the review ID to pick the last review or "ask" to be prompted with choices to pick. Custom Fields with Date and Times Collaborator does not have date or time custom fields, but you can closely approximate a date or time by using regular expression validation of single line text fields. For dates, the following regular expression requires a date in the 20th or 21st century that is approximately valid (yes, it accepts 31 days each month): (?:19|20)\d\d-(?:0[1-9]|1[012])-(?:0[1-9]|[12][0-9]|3[01]) The following regular expression validates a time on a 24 hour clock: (?:[01][0-9]|2[0-3]):[0-5][0-9] The two could be combined to accept a date and time field. Be sure you set the description of the field to describe exactly the format you are looking for so that users do not have to parse the regular expression to know what to enter. |
|
© 2003-2025 SmartBear Software. All rights reserved. |