Hi,
I've managed to cobble together my first javascript ever (yay!) and it works fine. This is how it looks:
ObjectivesSubGridFilterExecution = function (executionContext, teamGuid, gridName) {
// some of working code
}
In my configuration, I call it like this:

Now, I'd like to follow best practice and use namespaces. There are lots of examples of various ways of doing this but none that I can get to work. Let's say I'd like to create a namespace "geoproject" so I configure my event to call geoproject.ObjectivesSubGridFilterExecution (and more functions that will be added to the .js file). All my attempts so far result in a dialog box informing me that it can't find the function geoproject.ObjectivesSubGridFilterExecution
What's the syntax? Any help much appreciated!