new RMP_Array(conf)
        This constructor allows you to create an array widget that can be inserted dynamically in your web interface
    
    
    
    
    
    
    
        Parameters:
| Name | Type | Description | 
|---|---|---|
| conf | Object | JSON structure which contains the configuration of the array | 
Example
var columnConf = {"id":"id_text","label":{"text":"My label"},"variable":[{"name":"my_variable","value":"foo"}],"js-type":"RMP_TextInput"};
var footerConf = {"js-type":"RMP_Scripter","listen-variables":[{"name":"array.foo"}],"function":{"name":"SUM","parameter":"array.foo"}};
var conf = {"id":"id_array","variable":[{"name":"array"}],"column":[{"header":"Header 1","widget":columnConf,"footer":footerConf}]};
var id_array = new RMP_Array(conf );
id_widget.insertAfter(id_array );
 Methods
- 
    getColumnsCount()
- 
    
    
    This function returns the number of columns of an array
- 
    getContainerIndex() → {String}
- 
    
    
    
    
    
    
    
    
    
Returns:the index of the container of the widget, it might be the index of the column if the widget is in an array or the index of the tab if it's in a tab panel- Type
- String
 
- 
    getElement() → {object}
- 
    
    
    This function returns the html object of the widgetReturns:- Type
- object
 
- 
    getHeader(columnIndex)
- 
    
    
    This function returns the header value of a given column of the widget array (columnIndex starts at '0')Parameters:Name Type Description columnIndexString 
- 
    getListOfMyVariables() → {object}
- 
    
    
    This function returns the list of variables of the widgetReturns:- Type
- object
 Example["id8.label","id8.value"] for list or ["textvar"] for a text input 
- 
    getMissingVariableMessage() → {String}
- 
    
    
    This function returns the message displayed if a mandatory widget's variable is missingReturns:- Type
- String
 
- 
    getName() → {String}
- 
    
    
    This function returns the id as string of the widgetReturns:- Type
- String
 
- 
    getParent() → {object}
- 
    
    
    
    
    
    
    
    
    
Returns:the parent widget of a widget- Type
- object
 
- 
    getRowsCount()
- 
    
    
    This function returns the number of rows of an array
- 
    getTooltip() → {String}
- 
    
    
    This function returns the tooltip text of the widgetReturns:- Type
- String
 
- 
    getType() → {String}
- 
    
    
    This function returns the type of the widget(RMP_Image, RMP_Html, RMP_Scripter, RMP_StaticTextwidget, RMP_Button, RMP_TextInput, RMP_ListBox, RMP_MultiSelectionCheckBox, RMP_RadioButton, RMP_Array, RMP_FileUpload... )Returns:- Type
- String
 
- 
    getValidationVariableMessage() → {String}
- 
    
    
    This function returns the message displayed if a validation rule is not metReturns:- Type
- String
 
- 
    getValue() → {String}
- 
    
    
    This function returns the value of the widget's variable. It does not work for list's widgets (check box list, radio button list and list) where you should use widgetID.getSelectedValue.Returns:- Type
- String
 
- 
    getVariableValue(varName) → {String}
- 
    
    
    This function returns the value of a given variable of the widgetParameters:Name Type Description varNameString Returns:- Type
- String
 
- 
    insertAbove(widget)
- 
    
    
    This function allows you to insert above widgetID, the new widget created thanks to new RMP_xxx() functionParameters:Name Type Description widgetobject the inserted widget 
- 
    insertAfter(widget)
- 
    
    
    This function allows you to insert on the left of widgetID, the new widget created thanks to new RMP_xxx() functionParameters:Name Type Description widgetobject the inserted widget 
- 
    insertBefore(widget)
- 
    
    
    This function allows you to insert on the right of widgetID, the new widget created thanks to new RMP_xxx() functionParameters:Name Type Description widgetobject the inserted widget 
- 
    insertBelow(widget)
- 
    
    
    This function allows you to insert below widgetID, the new widget created thanks to new RMP_xxx() functionParameters:Name Type Description widgetobject the inserted widget 
- 
    insertRow()
- 
    
    
    This function inserts a row before index (index is starts at '0')ExamplewidgetID.insertRow("0") 
- 
    isActive() → {boolean}
- 
    
    
    This function returns true if the widget is active and false otherwiseReturns:- Type
- boolean
 
- 
    isAddRows() → {boolean}
- 
    
    
    returns true if the array is allowed to add new rows and false otherwiseReturns:- Type
- boolean
 
- 
    isColumnVisible(indexCol)
- 
    
    
    This function returns true if the the widget's column is visible and false otherwise. If the column do not exists is return falseParameters:Name Type Description indexColString column's index. (indexCol starts at '0') 
- 
    isDeleteRows() → {boolean}
- 
    
    
    returns true if the array is allowed to delete rows and false otherwiseReturns:- Type
- boolean
 
- 
    isEmptyVariable(variable) → {boolean}
- 
    
    
    This function returns true if the the widget's variable is empty and false otherwiseParameters:Name Type Description variableString Returns:- Type
- boolean
 
- 
    isEnabled() → {boolean}
- 
    
    
    This function returns true if a widget is active and false otherwiseReturns:- Type
- boolean
 
- 
    isIndexed() → {boolean}
- 
    
    
    This function returns true if the the widget's variable is an array and false otherwiseReturns:- Type
- boolean
 
- 
    isIndexedVariable(name) → {boolean}
- 
    
    
    This function returns true if the the widget's variable is an array and false otherwiseParameters:Name Type Description nameString Returns:- Type
- boolean
 
- 
    isModifyRows() → {boolean}
- 
    
    
    returns true if the "Can modify" field is checked and false otherwiseReturns:- Type
- boolean
 
- 
    isRequired() → {boolean}
- 
    
    
    This function returns true if the the widget's variable is required and false otherwiseReturns:- Type
- boolean
 
- 
    isValid(checkRules) → {boolean}
- 
    
    
    This function returns true if the the widget's variable is valid and false otherwiseParameters:Name Type Description checkRulesboolean Returns:- Type
- boolean
 
- 
    isValidVariable(varName) → {boolean}
- 
    
    
    This function returns true if the the widget's variable is valid and false otherwiseParameters:Name Type Description varNameString Returns:- Type
- boolean
 
- 
    isVisible() → {boolean}
- 
    
    
    This function returns true if the widget is visible and false otherwiseReturns:- Type
- boolean
 
- 
    moveAfter(widget)
- 
    
    
    This function allows you to move widgetID2 after (on the the right) widgetID1Parameters:Name Type Description widgetobject the inserted widget 
- 
    moveBefore(widget)
- 
    
    
    This function allows you to move widgetID2 before (on the left) widgetID1Parameters:Name Type Description widgetobject the inserted widget 
- 
    remove(widget)
- 
    
    
    This function allows you to remove widgetID. If removeVariable is set to true, it will also deleted content of variable attached to widgetParameters:Name Type Description widgetobject the inserted widget 
- 
    removeRow()
- 
    
    
    This function removes a given row (rowIndex starts at '0')
- 
    setActive(active)
- 
    
    
    This function allows to set the widget as active/inactiveParameters:Name Type Description activeboolean 
- 
    setAddRows(addRows)
- 
    
    
    Sets the "Add rows" field valueParameters:Name Type Description addRowsboolean 
- 
    setColumnActive(indexCol, active)
- 
    
    
    Sets a column as active or not (indexCol starts at '0')Parameters:Name Type Description indexColString activeboolean 
- 
    setColumnVisible(indexCol, visible)
- 
    
    
    Sets a column as visible or not (indexCol starts at '0')Parameters:Name Type Description indexColString visibleboolean 
- 
    setDeleteRows(deleteRows)
- 
    
    
    Sets the "Delete rows" field valueParameters:Name Type Description deleteRowsboolean 
- 
    setEnabled(e)
- 
    
    
    This function allows to set a widget as active/inactiveParameters:Name Type Description eboolean 
- 
    setHeader(columnIndex, text)
- 
    
    
    Sets the header value of a given column of the widget arrayParameters:Name Type Description columnIndexString textString 
- 
    setMissingVariableMessage(msg)
- 
    
    
    This function sets the message displayed if a mandatory widget's variable is missingParameters:Name Type Description msgString 
- 
    setModifyRows(modifyRows)
- 
    
    
    Allows you to enable or disable the add and delete row buttons on an arrayParameters:Name Type Description modifyRowsboolean 
- 
    setRequired(req)
- 
    
    
    This function sets the mandatory status of the widget's variableParameters:Name Type Description reqboolean 
- 
    setTooltip(tooltip)
- 
    
    
    This function sets the tooltip text of the widgetParameters:Name Type Description tooltipString 
- 
    setValidationVariableMessage(msg)
- 
    
    
    This function sets the message displayed if a validation rule is not metParameters:Name Type Description msgString 
- 
    setValue(value)
- 
    
    
    This function sets the value of the widget's variable. It does not work for list's widgets (check box list, radio button list and list) where you should use widgetID.setSelectedValue.Parameters:Name Type Description valueString 
- 
    setVariableValue(varName, value)
- 
    
    
    This function sets the value of a given variable of the widgetParameters:Name Type Description varNameString valueString 
- 
    setVisible(v)
- 
    
    
    This function allows to set the widget as visible/invisibleParameters:Name Type Description vboolean 
