Interface that allows us to access the rawArray field and the addToStore and removeFromStore methods on a SmartArray
Properties
| Name | Type | Description |
|---|
| length | number | |
Methods
addToStore() |
|---|
Adds a new row to the store |
PresentationaddToStore(newRow: C, thisRow: P): void;
|
Parameters| Name | Type | Description |
|---|
| newRow | C | The new row to add | | thisRow | P | The parent row |
Returnsvoid
|
getIdAtIndex() |
|---|
The array of IDs proxied by the ArrayProxy |
PresentationgetIdAtIndex(index: number): string | undefined;
|
Parameters| Name | Type | Description |
|---|
| index | number | |
Returnsstring | undefined
|
removeFromStore() |
|---|
Removes a row from the store |
PresentationremoveFromStore(row: C, parent: P): void;
|
Parameters| Name | Type | Description |
|---|
| row | C | | | parent | P | |
Returnsvoid
|