Difference between revisions of "Data 1 0-deleteFromList"
From ADF Docs
Line 5: | Line 5: | ||
public String <strong>deleteFromList</strong> ( string list, string listValue ) | public String <strong>deleteFromList</strong> ( string list, string listValue ) | ||
− | == Parameters == | + | == Parameters == |
− | + | <table id="lib-params"> | |
+ | <tr class="header"> | ||
+ | <td>Required</td> | ||
+ | <td>Name</td> | ||
+ | <td>Type</td> | ||
+ | <td>Description</td> | ||
+ | </tr> | ||
+ | |||
+ | |||
+ | <tr> | ||
+ | |||
+ | <td class="required">required</td> | ||
+ | |||
+ | <td>list</td> | ||
+ | <td>string</td> | ||
+ | <td>The list with the value that is to be removed</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | |||
+ | <td> </td> | ||
+ | |||
+ | <td>listValue</td> | ||
+ | <td>string</td> | ||
+ | <td>The value to remove from the list</td> | ||
+ | </tr> | ||
+ | |||
+ | </table> |
Revision as of 03:38, 24 March 2010
Description
Removes a value from a list
Signature
public String deleteFromList ( string list, string listValue )
Parameters
Required | Name | Type | Description |
required | list | string | The list with the value that is to be removed |
listValue | string | The value to remove from the list |