Albert Labermair
- Total activity 249
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 101
Articles
Recent activity by Albert Labermair-
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...
-
Gantt chart in smenso: filters, sorting and grouping
smenso makes project planning with the Gantt chart easy. Here you will learn how to filter, sort, and group your tasks to always stay on top of things.FiltersThe filter function helps you find exac...
-
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 ...
-
Display task
NoteThis article primarily covers the board view in Smenso. If youโre looking for information about other views, you can find them in the following articles: Working with the List View Tasks in t...
-
Custom views in All Tasks
In the All tasks area, you can view tasks across projects in a shared list and adapt the display to your requirements using a custom view.Among other things, you can define filters, columns, sortin...
-
Holidays in the timeline
Description In the Timeline view, the holidays and events from the standard holiday calendar are highlighted. This allows you to immediately see non-working days or important events that may affect...
-
toTimestamp - returns the UNIX timestamp for the specified date.
Description The toTimestamp function returns the UNIX timestamp (number of milliseconds since January 1, 1970, 00:00:00 UTC) for the specified date. Syntax toTimestamp(date) Arguments Argument D...
-
getUserNamedEMail - Determination of user name and e-mail
Description The getUserNamedEMail function returns the full name and the email address of the current user in the following format: FirstName LastName <Email Address> This function can only be used...
-
Control state of the button (0/1) with if conditions
Description The State of a button determines whether a button is active (1) or disabled (0). A disabled button cannot be clicked and appears grayed out for the user. This function is useful for dyn...
-
round - Round a number to a certain precision
Description The round function rounds the given number number to the specified number of decimal places, defined by precision. Syntax round(number, precision) Arguments Argument Description ...