|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.plumtree.uiinfrastructure.editor.EditorHelperModel
com.plumtree.uiinfrastructure.expandablelist.ExpListModel
com.plumtree.uiinfrastructure.expandablelist.growablelist.GrowableListModel
public class GrowableListModel
This is the implementation of the Expandable List framework for the Growable Array. The Growable Array is a list of input texts. On add, a new input text populated with the default value will be added at the bottom of the list.
| Field Summary | |
|---|---|
static int |
CLIENT_VALIDATION_TYPE_NON_EMPTY_STRING
Client validation type: no String can be empty |
static int |
CLIENT_VALIDATION_TYPE_NONE
Client validation type: no validation |
static int |
CLIENT_VALIDATION_TYPE_STRING_NO_SPACE
Client validation type: Strings can't have spaces |
static int |
CLIENT_VALIDATION_TYPE_VALID_URL
Client validation type: each String must be a valid URL |
static int |
EXPLIST_COL_MAX
Number total of columns |
static int |
EXPLIST_SORTEDARRAY_PROPID_INPUTTEXT
Second column: the value of the input text. |
protected PTImageType |
m_imgRowIcon
Icon to display on each row, just before the input text. |
protected int |
m_nClientValidationType
Type of Client validation for the String in the input text of each row. |
protected java.lang.String |
m_sAlertMessage
Message to display in the JavaScript validation. |
protected java.lang.String |
m_sDefaultValue
This is used on add to populate the input text of the newly added row. |
static java.lang.String |
STR_MVC_CLASS_NAME
Class name for the activity space |
| Fields inherited from class com.plumtree.uiinfrastructure.editor.EditorHelperModel |
|---|
m_asOwner |
| Constructor Summary | |
|---|---|
GrowableListModel()
|
|
| Method Summary | |
|---|---|
void |
AddRowsOnRepost(XPHashtable _htFormData)
Adds one row at the bottom of the list and sets the following values: First column: m_nNextIndex Second column: m_sDefaultValue |
void |
AddRowsToList(java.lang.String[] _aData)
Adds an array of new rows to the list. |
java.lang.Object |
Create()
This method is used by the ASManager to return new instances of managed objects. |
java.lang.String |
GetAlertMessage()
Returns the alert message to display in the JavaScript. |
int |
GetClientValidationType()
Returns the client validation type. |
java.lang.String[] |
GetListValues()
This method should ge used by the client to get back the array of values at the end of the Editor and store them. |
java.lang.String |
GetName()
Returns the Class name. |
PTImageType |
GetRowIcon()
Returns the icon to display on each row before the input text. |
void |
InitializeGrowableList(java.lang.String _sSectionTitle,
java.lang.String _sSectionSubTitle,
PTImageType _imgAddIcon,
java.lang.String _sAddLabel,
int _nListKey)
Initializes the expandable list. |
void |
InitializeSortedArray(PTGrowableSortedArrayWrapper _saData)
Initalizes the list (PTGrowableSortedArrayWrapper) with a column mapping and an array of sort. |
protected int |
SaveRow(PTGrowableSortedArrayWrapper _saData,
int _nRowIndex,
XPHashtable _htFormData)
Saves the data on the row _nRowIndex. |
java.lang.String |
SetClientValidationType(int _nClientValidationType,
java.lang.String _sAlertMessage)
Sets the type of JavaScript validation for the rows. |
void |
SetDefaultValue(java.lang.String _sDefaultValue)
Sets a new default value. |
void |
SetRowIcon(PTImageType _imgRowIcon)
Sets the icon to display on each row before the input text. |
| Methods inherited from class com.plumtree.uiinfrastructure.editor.EditorHelperModel |
|---|
CleanupAllData, CleanupTempData, Init |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.plumtree.uiinfrastructure.expandablelist.IExpListModelRO |
|---|
GetAddIcon, GetAddIconAlt, GetAddLabel, GetAlertMessageForEmptyList, GetArrExpListColInfo, GetDeleteIcon, GetDeleteIconAlt, GetDelRowConfirmMsg, GetEmptyListInstructions, GetEmptyListMainMessage, GetEnableMoveRowActions, GetIsListReadOnly, GetListKey, GetMainColumnSort, GetMainColumnSortDirection, GetModelStorageName, GetReadOnlyItems, GetSectionTitle, GetTableInstructions, GetUniqueInt, GetUniqueString, GetUnusedProperties, GetWrapColumnHeaders, IsAddButtonDisabled, IsCheckBoxesDisabled, IsPaginationEnabled |
| Methods inherited from interface com.plumtree.uiinfrastructure.form.pagination.IPaginationModelRO |
|---|
GetCurrentLowerObjectCount, GetCurrentUpperObjectCount, GetNumObjects, GetPaginationSize |
| Methods inherited from interface com.plumtree.uiinfrastructure.activityspace.IModel |
|---|
CleanupAllData, CleanupTempData, Init |
| Field Detail |
|---|
public static final java.lang.String STR_MVC_CLASS_NAME
public static final int EXPLIST_COL_MAX
public static final int EXPLIST_SORTEDARRAY_PROPID_INPUTTEXT
public static final int CLIENT_VALIDATION_TYPE_NONE
public static final int CLIENT_VALIDATION_TYPE_NON_EMPTY_STRING
public static final int CLIENT_VALIDATION_TYPE_STRING_NO_SPACE
public static final int CLIENT_VALIDATION_TYPE_VALID_URL
protected PTImageType m_imgRowIcon
protected java.lang.String m_sAlertMessage
protected java.lang.String m_sDefaultValue
protected int m_nClientValidationType
| Constructor Detail |
|---|
public GrowableListModel()
| Method Detail |
|---|
public void AddRowsOnRepost(XPHashtable _htFormData)
AddRowsOnRepost in class ExpListModel_htFormData - Form datapublic void AddRowsToList(java.lang.String[] _aData)
_aData - public java.lang.Object Create()
EditorHelperModel
Create in interface IManagedObjectCreate in class EditorHelperModelIManagedObject.Create()public java.lang.String GetAlertMessage()
GetAlertMessage in interface IGrowableListModelROcom.plumtree.uiinfrastructure.expandablelist.GrowableListModel#GetAlertMessage()public int GetClientValidationType()
GetClientValidationType in interface IGrowableListModelROcom.plumtree.uiinfrastructure.expandablelist.GrowableListModel#GetClientValidationType()public java.lang.String[] GetListValues()
public java.lang.String GetName()
GetName in interface IMVCObjectGetName in class EditorHelperModelpublic PTImageType GetRowIcon()
GetRowIcon in interface IGrowableListModelROcom.plumtree.uiinfrastructure.expandablelist.GrowableListModel#GetRowIcon()
public void InitializeGrowableList(java.lang.String _sSectionTitle,
java.lang.String _sSectionSubTitle,
PTImageType _imgAddIcon,
java.lang.String _sAddLabel,
int _nListKey)
_sSectionTitle - Main title._sSectionSubTitle - Sub title_imgAddIcon - Icon for the add action._sAddLabel - Text to display next to the add icon._nListKey - In case you have multiple Expandable Lists on
the same DP, they should have a different key (otherwise, just set it to 1).public void InitializeSortedArray(PTGrowableSortedArrayWrapper _saData)
InitializeSortedArray in class ExpListModel_saData -
public java.lang.String SetClientValidationType(int _nClientValidationType,
java.lang.String _sAlertMessage)
_nClientValidationType - _sAlertMessage -
public void SetDefaultValue(java.lang.String _sDefaultValue)
_sDefaultValue - New valuepublic void SetRowIcon(PTImageType _imgRowIcon)
_imgRowIcon -
protected int SaveRow(PTGrowableSortedArrayWrapper _saData,
int _nRowIndex,
XPHashtable _htFormData)
SaveRow in class ExpListModel_saData - List to update the data on row _nRowIndex_nRowIndex - Index of the row to save._htFormData - Data posted by the form.
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||