diff --git a/app/partials/examples.html b/app/partials/examples.html
index 9a975b5..827ba30 100644
--- a/app/partials/examples.html
+++ b/app/partials/examples.html
@@ -5,8 +5,8 @@
-
Below there are several examples of forms and customisations, some of which are linked to from other parts of the documentation.
-
There a number of keyboard short cuts that can be used in the forms. Hit ? to find out more.
+
Below there are several examples of forms and customisations, some of which are linked to from other parts of the documentation. In each case you can view the schema, create a new document or list the collection (and drill down to existing documents). Together they should give a good idea of some of the basic things you can do with forms-angular.
+
There are a number of keyboard short cuts that can be used in the forms. Hit ? to find out more.
| {{model.resourceName | titleCase}} |
diff --git a/app/partials/forms.html b/app/partials/forms.html
index 1b83ad5..9fe315f 100644
--- a/app/partials/forms.html
+++ b/app/partials/forms.html
@@ -325,8 +325,12 @@ Client side data events
onAfterDelete function(old)
In all onBefore... cases passing an error back will stop the event completing. There is a trivial example of
- how a data event hook might be used in this controller, which shows
- how such event handlers are set up.
+ how a data event hook might be used in this controller, which shows
+ how such event handlers are set up. In the case of the onBeforeCreate or onBeforeUpdate events the update/create
+ can be handled within the function by passing back the special err of '_update_handled_'. In these cases it will
+ usually be helpful to call baseScope.prepareForSave(cb: (error: string, dataToSave?: any) => void): void
+ to convert the client-side model into the format that needs to be written back to MongoDb.
+
You can also call onRecordChange function(data, old) which is useful for updating calculated fields etc.
diff --git a/app/partials/navbar.html b/app/partials/navbar.html
index 2749712..a590bfe 100644
--- a/app/partials/navbar.html
+++ b/app/partials/navbar.html
@@ -23,9 +23,9 @@
Schemas
Forms
Plugins
+ Examples
More