|
| 1 | +Extending Schema Form |
| 2 | +===================== |
1 | 3 | <!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
2 | 4 | <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
3 |
| -**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* |
4 |
| - |
5 |
| -- [Extending Schema Form](#extending-schema-form) |
6 |
| - - [How the form is built](#how-the-form-is-built) |
7 |
| - - [The actual building](#the-actual-building) |
8 |
| - - [Creating an add-on](#creating-an-add-on) |
9 |
| - - [The Template](#the-template) |
10 |
| - - [Compile template](#compile-template) |
11 |
| - - [Builder functions](#builder-functions) |
12 |
| - - [Application of builder functions](#application-of-builder-functions) |
13 |
| - - [Defining a decorator](#defining-a-decorator) |
14 |
| - - [Setting up schema defaults](#setting-up-schema-defaults) |
15 |
| - - [Sharing your add-on with the world](#sharing-your-add-on-with-the-world) |
16 |
| - - [The builders](#the-builders) |
17 |
| - - [builders.sfField](#builderssffield) |
18 |
| - - [builders.condition](#builderscondition) |
19 |
| - - [builder.ngModel](#builderngmodel) |
20 |
| - - [sf-field-model](#sf-field-model) |
21 |
| - - [sf-field-model="attribute name"](#sf-field-modelattribute-name) |
22 |
| - - [sf-field-model="replaceAll"](#sf-field-modelreplaceall) |
23 |
| - - [builders.ngModelOptions](#buildersngmodeloptions) |
24 |
| - - [builder.simpleTransclusion](#buildersimpletransclusion) |
25 |
| - - [Useful directives](#useful-directives) |
26 |
| - - [sf-field](#sf-field) |
27 |
| - - [What's on the scope?](#whats-on-the-scope) |
28 |
| - - [Deprecation warning](#deprecation-warning) |
| 5 | + |
| 6 | + |
| 7 | +- [Overview](#overview) |
| 8 | +- [How the form is built](#how-the-form-is-built) |
| 9 | + - [The actual building](#the-actual-building) |
| 10 | +- [Creating an add-on](#creating-an-add-on) |
| 11 | + - [The Template](#the-template) |
| 12 | + - [Compile template](#compile-template) |
| 13 | + - [Builder functions](#builder-functions) |
| 14 | + - [Application of builder functions](#application-of-builder-functions) |
| 15 | +- [Defining a decorator](#defining-a-decorator) |
| 16 | + - [Setting up schema defaults](#setting-up-schema-defaults) |
| 17 | + - [Sharing your add-on with the world](#sharing-your-add-on-with-the-world) |
| 18 | +- [The builders](#the-builders) |
| 19 | + - [builders.sfField](#builderssffield) |
| 20 | + - [builders.condition](#builderscondition) |
| 21 | + - [builder.ngModel](#builderngmodel) |
| 22 | + - [sf-field-model](#sf-field-model) |
| 23 | + - [sf-field-model="attribute name"](#sf-field-modelattribute-name) |
| 24 | + - [sf-field-model="replaceAll"](#sf-field-modelreplaceall) |
| 25 | + - [builders.ngModelOptions](#buildersngmodeloptions) |
| 26 | + - [builder.simpleTransclusion](#buildersimpletransclusion) |
| 27 | +- [Useful directives](#useful-directives) |
| 28 | + - [sf-field](#sf-field) |
| 29 | + - [What's on the scope?](#whats-on-the-scope) |
| 30 | + - [Deprecation warning](#deprecation-warning) |
29 | 31 |
|
30 | 32 | <!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
31 | 33 |
|
32 |
| -Extending Schema Form |
33 |
| -===================== |
| 34 | +Overview |
| 35 | +-------- |
34 | 36 |
|
35 | 37 | Schema Form is designed to be easily extended. You can add your own custom fields or completely
|
36 | 38 | change the how the entire form is rendered.
|
|
0 commit comments