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;
|
ParametersName | 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;
|
ParametersName | Type | Description |
---|
index | number | |
Returnsstring | undefined
|
removeFromStore() |
---|
Removes a row from the store |
PresentationremoveFromStore(row: C, parent: P): void;
|
ParametersName | Type | Description |
---|
row | C | | parent | P | |
Returnsvoid
|