Albert Labermair
- Total activity 210
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 102
Articles
Recent activity by Albert Labermair-
length - Determine the length of a character string
Description The length function returns the length of the provided string. This includes all characters within the string, including spaces, special characters, and numbers. Note: Cannot be persist...
-
Manage teams
Managing teams in the workspace allows you to create groups of people that can be assigned to projects or tasks, mentioned in comments, and collectively added as observers. Overview of TeamsIn the ...
-
Create task from comment
A new task or subtask can be created directly from a comment. The comment text is automatically transferred into the description of the new (sub)task. How to create a (sub)task from a commentOpen t...
-
Customize the sidebar and manage quick views
Description The sidebar provides quick access to various sections and can be customized individually. Views can be hidden, accessed via the More menu, and pinned back. Additionally, the order can b...
-
Manage registers in projects
Description In project management, you can define which tabs are visible within a project, in which order they appear, and which tab is loaded first when opening the project. These adjustments enab...
-
ceil - rounding up to the next whole number
Description The ceil function rounds a given number number up to the next whole number. This means that any decimal number is rounded up to the nearest higher whole number. Syntax ceil(number) Argu...
-
getUserName - Determine the user name
Description The getUserName function returns the name of the current user. This function can only be used within an interactive context, such as a button or workflow process. Syntax getUserName() A...
-
formatDate – Formatting a date
Description The function formatDate returns the specified date formatted according to the given pattern. It allows you to format a date using predefined placeholders to display it in the desired fo...
-
SetProcessMessage - Display message in process dialog
Description The SetProcessMessage function is used to display a message in the process dialog. This is especially useful for informing users about progress or status during the execution of process...
-
startsWith - Check whether a string starts with another string
Description The startsWith function checks whether the string haystack begins with the substring needle. It returns true if this is the case, otherwise false. If the optional parameter ignoreCase i...