Skip to content

Commit 76db55e

Browse files
Updated README
1 parent 39184d4 commit 76db55e

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,11 @@ igVideoPlayer | `<ig-video-player>`
7272
Simple type control options (`string`, `number`, `bool` etc.) are configured as an attributes on the control element. The options follow the same naming convention logic as the tag name.
7373

7474
#### Examples:
75-
- igGrid.options.localSchemaTransform &rarr; `<ig-grid local-schema-transform="true">`
76-
- igCombo.options.caseSensitive &rarr; `<ig-combo case-sensitive="true">`
75+
76+
Option | Markup
77+
--- | ---
78+
igGrid.options.localSchemaTransform | `<ig-grid local-schema-transform="true">`
79+
igCombo.options.caseSensitive | `<ig-combo case-sensitive="true">`
7780

7881
Defining complex type control options (`arrays` & `objects`) are configured as a child elements of the main control.
7982

@@ -91,9 +94,11 @@ Binding to control events is done again with attributes. Event attribute names a
9194

9295
#### Examples:
9396

94-
- igGrid.events.dataBind &rarr; `<ig-grid event-data-bind="dataBindHandler">`
95-
- igCombo.events.textChanged &rarr; `<ig-combo event-text-changed="textChangedHandler">`
96-
- igDateEditor.events.keypress &rarr; `<ig-date-editor event-keypress="keypressHandler">`
97+
Event | Markup
98+
--- | ---
99+
igGrid.events.dataBind | `<ig-grid event-data-bind="dataBindHandler">`
100+
igCombo.events.textChanged | `<ig-combo event-text-changed="textChangedHandler">`
101+
igDateEditor.events.keypress | `<ig-date-editor event-keypress="keypressHandler">`
97102

98103
## Controller Initialization
99104
Each control also implements a custom attribute directive where the attribute name is formed by splitting each capital letter in the control name with the `-` symbol (this naming convention follows the standard Angular normalization process) and the attribute value corresponds to the scope object holding the control options.

0 commit comments

Comments
 (0)